@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;500;600&display=swap');
@import url("https://use.typekit.net/ugv8qzn.css");

body{
    margin:0;
}


.navigation{
    padding:10px 0 60px 0;
    display:flex;
    justify-content: space-around;
    background-image: url(../img/header.png);
    background-repeat: repeat-x;
    background-size: contain;
}

.navigation img{
    margin-top: 55px;
}

ul {
    display: flex;
    list-style: none;
}



.navigation ul li{
    margin:5em 2em 3em 2em;
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
}

.navigation a{
    text-decoration: none;
    color:rgb(0, 0, 0);
}

.navigation a:hover {
    padding: 15px 30px;
    border-radius: 15px;
    background-color: rgb(215, 251, 251);
    transition: all 0.3s ease-in-out 0s; 
}

.navigation .gallery{
    padding: 15px 30px;
    border-radius: 15px;
    background-color: rgb(242, 235, 191);
    font-weight: 600;
}

.navigation .inquiry a{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    background-color: #ffdbb3 ;
    border-radius: 20px;
    padding: 15px 40px;
    
}

.navigation .logo:hover {
    padding:0px;
    border-radius: 0px;
    background: none;
    opacity: 0.5;
    transition: all 0.3s ease-in-out 0s; 
}

.navigation .inquiry a:hover{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background-color: rgb(215, 251, 251) ;
    border-radius: 20px;
    padding: 20px 50px;
}  
.illust{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.illust h1{
    font-family: chennai, sans-serif;
     font-weight: 400;
     font-size: 40px;
     margin-top: 100px;
}

.illustContainer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: 2em;
    row-gap: 2em;
}

.illust img{
    border-radius: 10px;
}

.illust img:hover{
    opacity: 0.5;
    transition: all 0.5s ease-in-out;
}

.illust p{
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    font-size: 13px;
    text-align: center;
    max-width: 50%;
    margin-bottom: 50px;

}
.childOne{
    grid-column-start: 2;
}

.childFour{
    grid-column-start: 2;
    grid-row-start: 2;
}

.childFive{
    grid-column-start: 3;
    grid-row-start: 2;
}

.childSix{
    grid-column-start: 4;
    grid-row-start: 2;
}

hr{
    margin-top: 10px;
    border-top: 5px dotted #bbb;
    max-width: 600px;
    min-width: none;
}

.top{
    margin-top: 150px;
}


.top:hover{
    opacity: 0.5;
}

.topTwo{
    margin-top: 50px;
}

.topTwo:hover{
    opacity: 0.5;
}


.design h1{
    font-family: chennai, sans-serif;
     font-weight: 400;
     font-size: 40px;
     margin-top: 100px;
}

.design{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.design p{
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    font-size: 13px;
    text-align: center;
    max-width: 50%;
    margin-bottom: 50px;
}
.designContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 50px;
}

.designContainer img{
    border-radius: 10px;

}

.designContainer img:hover{
opacity: 0.5;
transition: all 0.5s ease-in-out;
}

.footerTitle h1{
    margin-top: 100px;
    font-family: chennai, sans-serif;
     font-weight: 400;
     font-size: 40px;
}

.footerTitle{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../img/background.jpg);
    background-size:auto;
}

.footerTitle .socialmedia{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr ;
    column-gap: 1em;
}
.footerTitle .socialmedia .instagram{
    grid-column-start: 2;
}

.footerTitle .socialmedia .instagram:hover{
opacity: 0.5;
}

.footerTitle .socialmedia .behance:hover{
    opacity: 0.5;
}

.footerTitle .socialmedia .email:hover{
    opacity: 0.5;
}


.footerTitle button{
    margin: 50px 0 100px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    height: 80px;
    width: 250px;
    border: none;
    border-radius: 20px;
    background-color: rgb(176, 251, 243);
}

.footerTitle button a{
    text-decoration: none;
    color: black;
}

.footerTitle button:hover{
    padding: 15px 30px;
    border-radius: 15px;
    background-color: rgb(166, 135, 107);
    transition: all 0.3s ease-in-out 0s; 
}


@media only screen and (max-width: 850px) {

 .navigation{
        flex-direction: column;
        align-items: center;
        }
    .illustContainer {
grid-template-columns: 5em 1fr 1fr 5em;
grid-template-rows: 1fr 1fr 1fr;
}

.childOne{
        grid-column-start: 2;
}
    
.childThree{
        grid-column-start: 2;
        grid-row-start: 2;
}
    
.childFour{
        grid-column-start: 3;
        grid-row-start: 2;
}
    
.childFive{
        grid-column-start: 2;
        grid-row-start: 3;
}
.childSix{
        grid-column-start: 3;
        grid-row-start: 3;
}

.designContainer img{
        width: 650px;
}

.illust p{
        max-width: 90%;
}

.design p{
            max-width: 90%;
}
}

@media only screen and (max-width: 550px) {
    .illustContainer {
    display: flex;
    flex-direction: column;

            }

.illust p{
max-width: 80%;
}
.design p{
    max-width: 80%;
}
.designContainer img{
    width: 350px;
}
            
}

@media only screen and (max-width: 500px){
    .navigation ul{
    flex-direction: column;
    align-items: center;
    }
    .navigation ul li{
    margin:25px 40% 25px 25px;
    }
} 