* {
    margin: 0;
    padding: 0;
}
body {
    background-color:rgb(247, 239, 228);
    margin: 40px;
    font-family: 'Arial', sans-serif;
}
header {
    padding-bottom: 20px;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
    padding: 10px;
    border-radius: 10px;
    align-items: center;
    
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    
}
.nav-bar li {
    color: black;
    list-style: none;
    text-decoration: none;
}
.nav-bar :hover {
    color: orange;
}

nav img {
    width: 80px;
    height: 80px;
}

#website-name {
    text-align: center;
    padding: 10px;
}
main {
    margin-top: 10px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    padding: 30px;
}
.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}
.card {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    width: 300px;
    border-radius: 10px;
    border: 1px solid ;
    border-color: rgb(153, 116, 68);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    margin-top: 20px;
}

.card img  {
    margin-top: 20px;
    width: 250px;
    height: auto;
    border-radius: 10px;
}

footer img {
    width: 30px;
    height: auto;
    border-radius: 5px;
}

.about-photo img {
    width: 100%;
    height: 400px;
}

.about {
    text-align: center;
    padding: 200px;
    padding-top: 30px;
}
.about h1{
    text-align: center;
}
.about p {
    text-align: left;
    padding: 20px;
}
.contact {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    justify-content: center;
    width: 100%;
}

.contact-form-container input,textarea {
    width: 100%;
    height: 40px;
    padding: auto;
    margin: 5px;
    border: 1px solid rgb(153, 116, 68);
    border-radius: 5px;
    outline: none;
    font-size: 16px;

}

.contact-form-container button {
    padding: 10px 20px;
    margin: 5px;
    background-color: rgb(12, 12, 12);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 50%;
}

.contact-form-container {
    justify-content: space-between;
    width: 50%;
    overflow: hidden;
    padding: 10px;
    
}
.contact-img-container{
    width: 50%;
    display: flex;
    justify-content: center;
}
.contact-img-container img {
    width: 300px;
    height: auto;
    border-radius: 50px;

}
