*{
    margin: 0px;
    padding: 0px;
    font-family: "Poppins", system-ui;
    box-sizing: border-box;
}

#container{
    width: 100%;
    height: 100vh;
    position: relative;
}
/* Navigation */
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    /* background-color: rgb(79, 79, 79); */
   
}

.logo{
    width: 120px;
}


.list-items{
    list-style: none;
    display: inline;
    margin: 10px 20px 0px 20px;
}

.list{
    text-decoration: none;
    color: black;
    font-weight: 600;
}
.list:hover{
    color: rgb(112, 112, 112);
    text-decoration: underline;
}
/* Home */
.home-contents{
    margin: 15% 0px 0px 8%;
}

#username,#lname{
    font-family: "Playwrite CU", system-ui;
    font-size: 30px;
    margin-bottom: 12px;
}

#lname{
    color: orange;
}

#user-desc{
    font-family: "Comfortaa", system-ui;
    line-height: 1.3;
    margin-bottom: 12px;
}

#cv-btn{
    text-decoration: none;
    color: orange;
    background-color: black;
    padding: 12px;
    display: inline-block;
    margin-top: 30px;
    border-radius: 30px;
}

.home-image{
    width: 50%;
    height: 80%;
    position: absolute;
    bottom: 0px;
    right: 30px;
} 

.image-grp1{
    position: absolute;
    height: 100%;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.home-image:hover #shape{
    bottom: 90px;
    transition-duration: 1.2s;
}

.home-image:hover #girl{
    left: 30%;
    transition-duration: 1.2s;
    
}
/*  About*/
#about{
    margin: 20% 8% 0px 8%;
}

.sectionHead{
    text-align: center;
}

#mainHead{
    font-size: 40px;
}
#subHead{
    font-size: 25px;
    color: orange;
}

.aboutBody{
    margin-top: 5%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 60px;
}

#img-about{
    width: 75%;
}

.aboutContents{
    font-family: "Comfortaa", system-ui;
    font-size: 18px;
    text-align: justify;
}

.informations{
    margin-top: 2rem;
}

.infoBox{
    margin-top: 6px;
    margin-bottom: 6px;    
}

.infoBox>span{
    margin-left: 10px;
}

/* Skills */
/* Skills */
#skill{
    margin: 8% 8% 0px 8%;
}

.skillContent{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 2rem;
    margin-top: 5%;
}

.barElement{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1rem 0px;
}
.bars{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1rem 0px;
}


.baseBar{
    background-color: black;
    width: 100%;
    height: 0.5rem;
    border-radius: 10px;
    position: absolute;
    margin-top: 10%;
    bottom: 0px;
}
.mainhead, .barpercentage{
    font-weight: 500px;
    font-size: 1.3rem;
}
.htmlbar{
    background-color: orange;
    width: 89%;
}
.cssBar{
    background-color: orange;
    width: 82%;
}
.jsBar{
    background-color: orange;
    width: 71%;
}
.reactBar{
    background-color: orange;
    width: 82%;
}
#contact{
    margin: 8% 8% 0px 8%;
}
.iconcollection{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
}
.icon{
     width: 50px;
     height: 50px;
     /* border: solid; */
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 0px 10px;
}
.brands{
    color: black;
    font-size: 2rem;
}
.icon:hover{
    background-image: linear-gradient(to bottom right, red, green, violet);
}
.icon:hover .brands{
    color: white;
    /* animation */
    animation: rotate 3s;
}

@keyframes rotate{
    0%{
        transform: rotate(30deg);
    }
    20%{
        transform: rotate(-30deg);
    }
    40%{
        transform: rotate(30deg);
    }
    60%{
        transform: rotate(-30deg);
    }
    80%{
        transform: rotate(30deg);
    }
    100%{
        transform: rotate(-30deg);
    }
}
footer{
    margin-top: 8%;
}
#copywrite{
    text-align: center;
    font-weight: 600;
}
.upArrow{
    float: right;
    margin-top: -40px;
}
html{
    scroll-behavior: smooth;
}
::-webkit-scrollbar{
    width: 10px;
    border-radius: 10px;
}
::-webkit-scrollbar-track{
    background-color: azure;

}
::-webkit-scrollbar-thumb{
    background-color: orange;
    border-radius: 10px;
}
