@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 .about{
    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;
}   

.container{
    display: grid;
    grid-template-columns: 1fr 1fr 3em 1fr 1fr;
    margin-top: 50px;
}

.container .aboutme{
   
    grid-column-start: 2;

}

.aboutmeTitle{
    font-family: chennai, sans-serif;
    font-style: normal;
    font-size: 50px;
    font-weight: 100;
    background-color: rgb(233, 191, 155);
    color: white;
    margin-top: -100px;
    padding: 50px 100px;
    width: auto;


}


.container p{
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    margin: 50px 0 0 160px;
    font-size: 15px;
 
}

.container .morephoto{
    margin-top: 70px;
    grid-column-start: 4;
}

.container .morephoto img{
    border-radius: 20px 0 0 20px;
}


.container .morephoto .bento{
    margin-top: 50px;
    border-radius: 20px;
}

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

.skills{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.skills h1{
    margin-top: 100px;
    font-family: chennai, sans-serif;
     font-weight: 400;
    font-style: normal;
    font-size: 40px;
}

.experiences{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
}
.experiences h1{
    margin-top: 100px;
    font-family: chennai, sans-serif;
     font-weight: 400;
    font-style: normal;
    font-size: 40px;
}

.top{
    margin-left: 48%;
    margin-top: 50px;
}

.topTwo{
    margin-top: 50px;
}


.top:hover{
    opacity: 0.5;
}

.topTwo:hover{
    opacity: 0.5;
}

.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: 1050px) {
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.morephoto .bento{
    margin-left: 20%;
}

.container .aboutme p{
    max-width: 60%;
}   
}

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


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

    .container .aboutme .myphoto{
height: 750px;
margin-left: 5%;
    }
.container .aboutme p{
    max-width: 70%;
}    
}

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