* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Oswald", sans-serif;
}
#container {
  width: 100%;
  height: 100vh;
  position: relative;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 100px;
}
.logo {
  width: 150px;
}
.list-items {
  list-style: none;
  display: inline;
  margin: 0px 20px;
}
.links {
  text-decoration: none;
  color: black;
  font-weight: 600;
}
.links:hover {
  color: green;
  text-decoration: underline;
}
.home-content {
  margin: 13% 0px 0px 8%;
}
#username {
  font-family: "Playwrite HU", cursive;
  font-size: 50px;
  margin-bottom: 20px;
}
#lname {
  font-family: "Playwrite HU", cursive;
  color: green;
}
#user-details {
  line-height: 1.5;
}
#download{
  text-decoration: none;
  color: white;
  background-color: green;
  padding: 10px;
  display: inline-block;
  border-radius: 10px;
  margin-top: 30px;
}
.home-img{
  width: 45%;
  height: 75%;
  position: absolute;
  right: 30px;
  bottom: 0px;
}
.group1{
  position: absolute;
  height: 100%;
  bottom: 0px;
  left: 30%;
  transform: translateX(-30%);
  transition: bottom 2s, left 1s;
}
.home-img:hover #shape{
  bottom: 70px;
}
.home-img:hover #girl{
  left: 40px;
}
#about{
  margin: 17% 0px 0px 8%;
}
.sectionhead{
  text-align: center;
}
.mainHead{
  font-size: 20px;
  color: blue;
}
.aboutBody{
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
}
.aboutContent{
  font-size: 20px;
  text-align: justify;
}
.information{
  margin-top: 1.3rem;

}
.infoBox{
  margin-left: 10px;
}
.infoBox>span{
  margin-left: 1rem;
}
#skill{
  margin: 5% 0px 0px 8%;
}
.skillContent{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  gap: 2rem;
  margin-top: 20px;
}
.bars{
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1rem;
}
.barHead,.barPercentage{
  font-weight: 500;
  font-size: 1.3rem;
}
.baseBar{
  width: 100%;
  height: 0.5rem;
  background-color: black;
  border-radius: 10px;
  position: absolute;
  bottom: 0px;
}
.portBar{
  background-color: green;
  width: 93%;
}
.landBar{
  background-color: green;
  width: 81%;
}
.wildBar{
  background-color: green;
  width: 87%;
}
.editBar{
  background-color: green;
  width: 90%;
}
.mySkill{
  width: 80%;
}
#contact{
  margin: 8% 8% 0px 8%;
}
.iconCollection{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5%;
}
.icon{
  border: solid white;
  width: 50px;
  height: 50px;
  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,green,lightgreen,white);
}
.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: 8%;
}
#copyright{
  text-align: center;
  font-weight: 600;
}
.upArrow{
  float: right;
  margin: -40px 20px 20px 0px;
}
html{
  scroll-behavior: smooth;
}
::-webkit-scrollbar{
  width: 10px;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb{
  background-color: green;
  border-radius: 10px;
}
::-webkit-scrollbar-track{
  background-color: blanchedalmond;
}