* {
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
    background-color: rgb(58, 63, 68);
    color: white;
  }
  nav {
    position: fixed;
    z-index: 1;
    top: 0;
    margin-bottom: 10%;
    width: 100%;
    height: 88px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -ms-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    backface-visibility: hidden;
    transform: translateZ(0px);
    transition: 0.3s;
    opacity: 6px;
  }
  nav a{
    font-family: 'Cormorant Garamond', serif;
    color: white;
    text-decoration: none;
  }
  nav img {
    height: 40px;
  }
  
  .burger {
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    display: grid;
    place-items: center;
    padding: 0;
    width: 82px;
    height: 82px;
    font-size: 30px;
    color: white;
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  
  .burger i:last-child {
    display: none;
  }
  
  body.open .burger i:first-child {
    display: none;
  }
  
  body.open .burger i:last-child {
    display: block;
  }
  
  .overlay {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgb(27 32 44 / 70%);
    visibility: hidden;
    opacity: 0;
    backdrop-filter: blur(6px);
    transition: 0.3s;
  }
  
  body.open .overlay {
    visibility: visible;
    opacity: 1;
  }
  
  nav button {
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  
  aside {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 260px;
    height: 100%;
    padding: 18px 20px 20px;
    box-shadow: 0 0 20px rgb(0 0 0 / 70%);
    translate: 100% 0;
    transition: 0.3s;
  }
  
  body.open aside {
    translate: 0;
  }
  
  aside a {
    display: flex;
    align-items: center;
    height: 50px;
    text-decoration: none;
    color: #f7f7f7;
  }
  
  aside h3 {
    margin: 40px 0 10px;
    color: white;
    font-weight: 400;
    font-size: 16px;
  }
  .icon
  {
    display: flex;
  }
  .about-section{
    border-bottom: 1px solid white;
    margin-top: 50px;
  }
  .about-section h2, .about-section p, .project-section h2, .skills-section h2{
    text-align: center;
    align-items: center;
    line-height: 2;
    padding-left: 30px;
    padding-right: 30px;
  }

.home-section img{
  width: 220px;
  height: 200px;
  border-radius: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
}
.home-section p{
  text-align: center;
  align-items: center;
  line-height: 2;
  font-size: 20px; 
  border-bottom: 1px solid white;
  padding: 20px;
  margin: 20px;
}
.home-section span{
  color:thistle;
}
.footer{
  margin-left: auto;
  margin-right: auto;

}
.icon a{
  color: white;
  padding: 10px;
}
.container {
  width: 100%;
  background-color: #ddd;
}
.skills-section{
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
}

.skills{
  display: flex;
  font-size: 50px;
  justify-content: space-between;
}
#html{
  color: rgb(255, 97, 24);
}
#css{
  color: rgb(0, 98, 225);
}
#js{
  color: rgb(223, 223, 15);
}
.project-section a{
  text-decoration: none;
  color: black;
}
.project-section{
  border-bottom: 1px solid white;
  border-top: 1px solid white;
}
.project-section p{
  line-height: 1.5;
  align-items: center;
  text-align: center;
}
.project-section img{
  width: 300px;
  height: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.project-div{
  margin-left: 20px;
}
