body{

    font-family: "Merriweather Sans", sans-serif;
   
    
}
.wrapper{
    width: 80dvw;
    margin-left: auto;
    margin-right: auto;
}

header{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5em;
}
header img{
    width: 200px;
  
}
header div a{
    padding: 2em;
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
    transition: color 0.3s ease-in-out;
}
header div a:hover{
    color: rgb(101, 96, 77);
}
nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5em;
    list-style-type: none;
   
}
nav a{
    display: flex;
    text-decoration: none;
    color: rgb(18, 13, 13);
    font-size:1.2rem;
    transition: color 0.3s ease-in-out;
     
}
nav a:hover{
    color: rgb(101, 96, 77);
}
.hero{
    position: relative;
}

.hero img{
    width: 100%;
    height: auto;
    
}
.hero h1{
    position: absolute;
    top: 50%;
    left: 40%;
    font-size: 2rem;
    border-left: 2px solid black;
    border-right: 2px solid black;
}
 
.title {
    display: flex;
    background-color: antiquewhite;
                
}
.title h2{
    font-size: 2.2rem;
    font-weight: bold;
    font-style: normal;
}
.title p{
    font-size: 3rem;
    font-weight: 400;
    font-style: normal;
    margin-left: 1em;
    padding-left: 1em;
    border-left: 2px solid black;
}
.inspired{
    display:flex ;
    margin-top: 1em;
}
.inspired figure{
    width: 80dvw;
} 
.inspired h2{
    font-size: 2rem;
    text-align: center;
    font-weight: 400;
    font-style: normal;
  }
.inspired p{
    font-size: 3rem;
    font-weight: 400;
    font-style: italic;
}
.wrapper p{
    font-size: 1rem;
    text-align: center;
}

.photo-gallery{
    display: flex;
    justify-content: center;
    width: 200px;
    margin: auto;
    gap: 1em;
    margin-top: 1em;
    margin-bottom: 1em;
   
 
}
section h5{
    text-align: end;
}
section{
    margin-top: 2em;
    margin-bottom: 2em;
}
.photo-gallery img{
    border-radius: 8px;
}
h4, h5{
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
}
.photogallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    justify-content: space-around;
    align-items: start;
    padding: 2em;
}

figure {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center; 
    width: 200px;
    margin: 1em;
    padding: 10px;
  
}   
h6{
    font-size: 2.5rem;
    text-align: center;
}
section p{
    font-size: 1.2rem;
    text-align: center;
}


form{
   text-align: center;
    width:100%;
    margin-left: auto;
    margin-bottom: 2em;
    padding: 3em;
    
}
input {
    border: 1px solid;
    width: 300px;
}
textarea{
    border: 1px solid;
    width: 300px;

}
table, th, td{
    width: 80dvw;
    text-align: center;
    padding: 7px;
    
}
tr:nth-child(even) {background-color: #f2f2f2;}

.center{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
   
    
}
.footer{
    display:flex;
    align-items: center;
    gap: 3em;
    margin-bottom: 1em;
    
}
.footer img{
    width: 150px;
    
}
.footer a{
    text-align: center;
}

@media (max-width: 768px) {
    .wrapper {
        max-width: 90vw;
    }

    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 1em;
    }

    .title {
        flex-direction: column;
        text-align: center;
    }

    .title p {
        margin-left: 0;
        border-left: none;
        border-top: 2px solid black;
        padding-top: 0.5em;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .photo-gallery {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .form {
        padding: 1em;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }
}