header {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 200000;
  right: 20px;
  top: 20px;
}

.btns-container .fas {
  font-size: 32px;
  padding: 10px;
  background-color: #181818;
  color: #fff;
  cursor: pointer;
}
.btns-container .fas:nth-child(2) {
  display: none;
}

/* aside section starts here */
.aside {
  width: 100%;
  height: 0;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  background-color: hsl(0, 0%, 20%);
  z-index: 100000;
  transition: 0.3s;
}
.show-nav {
  height: 100vh;
  overflow: visible;
}
.aside-wrapper {
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
.logo-section {
  min-height: 30vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: hsl(0, 0%, 20%);
  color: #fff;
}
.logo {
  display: grid;
  place-items: center;
  text-decoration: none;
}

.logo span {
  font-size: 26px;
  color: aliceblue;
}
.logo-section > span {
  /* margin-top: 15px; */
  font-size: 16px;
  font-size: "Times New Roman", Times, serif;
}

.social-icons {
  list-style: none;
  display: flex;
  margin-bottom: 30px;
}
.social-icons li {
  width: 40px;
  font-size: 24px;
}
.social-icons li a {
  text-decoration: none;
  color: #909096;
}
.social-icons li a:hover {
  color: aliceblue;
}
.link-btn {
  font-family: "Coolvetica Regular", sans-serif;
  overflow: hidden;
  display: block;
  padding: 8px 16px;
  color: aliceblue;
  font-size: 24px;
  text-transform: capitalize;
  text-decoration: none;
  position: relative;
  transition: all 0.5s;
  text-align: center;
  cursor: pointer;
  margin-top: 1rem;
}
.link-btn:hover {
  color: white;
}
.btn-span {
  position: absolute;
  width: 0;
  height: 25%;
  background-color: #000;
  z-index: -1;
  left: 0;
  top: 0;
  transition: all 0.5s;
}

.link-btn:hover .btn-span {
  width: 100%;
}

.btn-span:nth-child(2) {
  top: 25%;
  transition-delay: 0.15s;
}
.btn-span:nth-child(3) {
  top: 50%;
  transition-delay: 0.3s;
}

.btn-span:nth-child(4) {
  top: 75%;
  transition-delay: 0.45s;
}
#logo {
  /* position: absolute; */
  /* top: 2%;
  left: 2%; */
  width: 100px;
  stroke-width: 200;
  stroke: #fff;
  stroke-dasharray: 112708;
  stroke-dashoffset: 112708;
  animation: strokee 10s linear infinite;
  fill: rgba(0, 0, 0, 0);
  /* z-index: -3; */
}
@keyframes strokee {
  0% {
    stroke-dashoffset: 112708;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
