@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Mono&display=swap");
html, body {
  background-color: rgb(45, 46, 50);
}

h1, h2, h3, h4, h5, h6, p, li, a, input {
  color: #ffffff;
}

.navbar {
  position: fixed;
  z-index: 999;
  width: 100%;
}

.bg-primary {
  background-color: rgb(45, 46, 50) !important;
}

.primary-text {
  color: rgb(45, 46, 50) !important;
}

.bg-secondary {
  background-color: rgb(37, 38, 42) !important;
}

.secondary-text {
  color: rgb(37, 38, 42) !important;
}

.bg-accent {
  background-color: rgb(29, 219, 61) !important;
}

.accent-text {
  color: rgb(29, 219, 61) !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.white-text {
  color: #ffffff !important;
}

.hero-container {
  height: auto;
  width: 100%;
  aspect-ratio: 21/9;
}
.hero-container .hero-video-container {
  position: absolute;
  height: auto;
  width: 100%;
  top: 0;
  left: 0;
  aspect-ratio: 21/9;
  z-index: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-container .hero-video-container:after {
  content: "";
  background-color: rgba(45, 46, 50, 0.3);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-container .hero-content {
  z-index: 2;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.hero-container .hero-content h1 {
  font-family: "Noto Sans Mono", monospace;
  font-size: clamp(40pt, 5vw, 80pt);
  width: 17ch;
  line-height: 1;
  position: relative;
  animation: typing 2s steps(17), cursor 0.5s step-end infinite alternate;
  padding-right: 0.5ch;
  border-right: 5px solid;
  border-color: rgb(29, 219, 61);
  white-space: nowrap;
  overflow: hidden;
}
.hero-container .hero-content h6 {
  font-size: clamp(10pt, 5vw, 18pt);
}

a {
  transition: color 0.2s ease-out;
}
a:hover {
  color: rgb(29, 219, 61);
}
a.card {
  text-decoration: none;
  box-shadow: 0 0px 0px 0 rgba(0, 0, 0, 0), 0 0px 0px 0 rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s ease-out;
}
a.card:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
a.social-link svg {
  fill: rgb(29, 219, 61);
  transition: fill 0.2s ease-out;
}
a.social-link:hover svg {
  fill: #ffffff;
}

@keyframes typing {
  from {
    width: 0;
  }
}
@keyframes cursor {
  50% {
    border-color: transparent;
  }
}
@media (max-width: 767.98px) {
  .navbar {
    position: unset;
  }
  .hero-container {
    aspect-ratio: 1/1;
  }
  .hero-container .hero-video-container {
    aspect-ratio: 1/1;
  }
  .hero-container .hero-content h1 {
    animation: unset;
    white-space: initial;
    border: unset;
    line-height: 1.2;
  }
  .hero-container .hero-content h1 .accent-text {
    border-right: 5px solid;
    border-color: rgb(29, 219, 61);
    animation: cursor 0.5s step-end infinite alternate;
  }
}/*# sourceMappingURL=style.css.map */