#hero {
  background-image: url(/assests/images/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
}
.bg {
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-color: rgb(34, 34, 34, 0.3);
}
.herogrid {
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(1, 1fr 1fr);
}
#hero-text {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
#hero-text > div {
  display: flex;
  flex-direction: column;
  align-content: center;
}
#greet {
  letter-spacing: 12px;
  display: inline-block;
  margin: 0px;
  font-family: "Oswald", sans-serif;
  font-size: 7rem;
  color: transparent;
  -webkit-text-stroke: 2.5px #00ad82;
}
#greet span {
  margin-left: -40px;
  color: #00ad82;
}
#myname {
  display: inline-block;
  margin: 0px;
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #222222;
}
#hero-text p {
  font-family: "inconsolata", monospace;
  font-size: 1.1rem;
  color: #222222;
  margin: 3px 0 0 0;
  font-weight: 300;
}
#hero-img {
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: end;
  & img {
    width: 76%;
  }
}
.social-icons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: 12px 0 0 0;
}

.social-icons a {
  margin: 0;
  font-size: 1.1rem;
  color: #00ad82;
}

.social-icons a:hover {
  color: #0c9775;
}

/* .btn-section {
  background-color: #00ad82;
  border: none;
  color: #f8f8f8;
  padding: 8px;
  font-size: 1rem;
  border-radius: 4px;
  font-family: "Oswald", sans-serif;
  width: 90px;
}

.btn-section:hover {
  color: #eeeeee;
  background-color: #0c9775;
} */

.btn-section {
  position: relative;
  padding: 7px 20px;
  border-radius: 7px;
  border: 2px solid #00AD82;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  background: transparent;
  color: #000000;
  overflow: hidden;
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  cursor: pointer;
}

.btn-section:hover {
  /* background: rgb(61, 106, 255); */
  background: #00AD82;
  box-shadow: 0 0 30px 5px #00AD82;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.btn-section:hover::before {
  -webkit-animation: sh02 0.5s 0s linear;
  -moz-animation: sh02 0.5s 0s linear;
  animation: sh02 0.5s 0s linear;
}

.btn-section::before {
  content: '';
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #fff;
  box-shadow: 0 0 50px 30px #fff;
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.btn-section:active {
  box-shadow: 0 0 0 0 transparent;
  -webkit-transition: box-shadow 0.2s ease-in;
  -moz-transition: box-shadow 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
}

.arrow {
  width: 30px;
  z-index: 2;
  position: relative;
  left: 50vw;
  bottom: 40px;
  color: white;
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}