*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/* body{
    font-family: "Poppins", sans-serif;
} */
nav{
    display: flex;
    justify-content: space-between;
    background-color: #f9d2d2d6;
    height: 90px;
    font-family: "Poppins", sans-serif;
    line-height: 4;
    padding:  0px 40px ; 
}
header{
    position: sticky;
    top: 0;
    backdrop-filter: blur(3px);
    z-index: 100;
}

.head-left > a{
    font-size: 20px;
    color: black;
    list-style: none;
    text-decoration: none;
}
.head-right > a{
    font-size: 20px;
    color: black;
    list-style: none;
    text-decoration: none;
    padding-right: 20px;
}
.head-right > a:hover{
    color: #871212;
}
.description h1{
    text-align: center;
    /* padding: 3%; */
    font-family: "Poppins", sans-serif;
}
#about-section{
    /* min-height: 100vh; */
    flex-direction: column;
    justify-content: center;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    text-align: center;
    gap: 1rem;
    background-color: #ecf0f162;
}
.headshot > img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.headshot > img:hover{
    transform: scale(1.2);
}
.headshot{
    width: 25rem;
    height: 25rem;
    overflow: hidden;
    margin-top: 1rem;
    margin-bottom: 37px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.bio > p{
    font-family: "Poppins", sans-serif;
}

.sociallink >a > i{
    color: rgba(236, 159, 159, 0.845);
    font-size: 30px;
    /* padding-right: 15px; */
    padding: 30px 10px;
}
.sociallink > a{
    text-decoration: none;
}
@media(max-width:800px){
    section{
        text-align: center;
        
    }.headshot{
       max-width: 100%;
    }
}
@media(max-width: 470px){
    .head-left{
        margin-right: 24px;
    }
    .head-left > a{
        font-size: 15px;
        line-height: 5.5;
    }
    .head-right > a{
        font-size: 12px;
        padding-right: 10px;
        line-height: 7;
    }#about-section .headshot{
        width: 192px;
        height: 192px;
        object-fit: cover;
    }.description > h1{
        font-size: 17px;
    }.bio > p{
        font-size: 14px;
    }.sociallink > a> i{
        font-size: 25px;
    }
}
.software-project{
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-bottom: 5%;
}
#project-section > h2{
    text-align: center;
    padding: 5% 0%;
    font-family: "Poppins", sans-serif;
    color: rgb(179, 78, 78);
    font-size: 30px;
}
picture{
   padding-bottom: 20px;
}
picture > img{
    width: 410px;
    height: 290px;
    object-fit: fill;
    
}
.dmtopup-beautystore{
    border: 1px solid;
    border-color: white;
    box-shadow: 5px 8px 8px 5px rgba(0, 0, 0, 0.517);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    text-align: center;
    line-height: 2;
    transition: all 0.4s linear;
    
}
.dmtopup-beautystore:hover{
    transform: translateY(-10px);
}
.user-interface{
    border: 1px solid;
    border-color: white;
    box-shadow: 5px 8px 8px 5px rgba(0, 0, 0, 0.517);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    text-align: center;
    line-height: 2;
    transition: all 0.2s linear;
}
.user-interface:hover{
    transform: translateY(-10px);
}
.naruto{
    border: 1px solid;
    border-color: white;
    box-shadow: 5px 8px 8px 5px rgba(0, 0, 0, 0.517);
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    text-align: center;
    line-height: 2;
    transition: all 0.2s linear;
   
}
.naruto:hover{
    transform: translateY(-10px);
}
@media(max-width:800px){
    .software-project{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }picture > img{
        min-width: 300px;
    }
}

/* skill-section */
#skill-section{
    padding: 4% 0%;
    background-color: #ecf0f162;
}
#skill-section > h2{
    text-align: center;
    padding-top: 5%;
    font-family: "Poppins", sans-serif;
    color: rgb(179, 78, 78);
    font-size: 30px;
}
.skill-descrip{
    text-align: center;
    padding-top: 5%;
}
.skill-descrip > i{
    font-size: 45px;
    padding-right: 18px;
    color: rgba(236, 159, 159, 0.845);
    transition: 0.2s all linear;
}
.skill-descrip > i:hover{
    transform: scale(1.2);
}
@media(max-width: 800px){
    #skill-section > h2{
        font-size: 20px;
        text-align: center;
    }
    .skill-descrip > i{
        text-align: center;
        font-size: 30px;
    }
}
