body {
  background-color: #000000;
  height: 100vh !important;
  transition: background-image 0.9s ease-in-out;
  overflow: hidden !important;
}

.sm-text-p {
  font-size: 0.75rem !important;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none !important;
}

.width-fit-content {
  width: fit-content !important;
}

.heading-text {
  font-size: 16rem;
  color: #f93434;
  font-family: "Protest Strike", sans-serif;
}

.fs-fantasy {
  font-family: "Protest Strike", sans-serif;
  font-weight: 100;
  font-size: 2.2rem;
  letter-spacing: -1px;
  line-height: 1;
}

@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in {
  display: inline-block;
  opacity: 0;
}

[data-aos="fade-left"].slide-in {
  animation: slideInRight 0.9s forwards;
  animation-delay: var(--aos-delay);
}

[data-aos] {
  --aos-delay: 9ms;
}

h2 {
  transition: transform 0.5s ease, color 0.5s ease;
  transform: translateY(0);
}

h2.hovered {
  transform: translateY(-1px);
  color: red;
}

h1 {
  transition: transform 0.8s ease, opacity 0.8s ease;
  transform: translateY(100%);
  opacity: 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
}

h1.slide-down {
  transform: translateY(0);
  opacity: 1;
}

h1.slide-up {
  transform: translateY(100%);
  opacity: 0;
}

.dots {
  width: 30px;
}

.text-red {
  color: red;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in {
  display: inline-block;
  animation: slideIn 0.1s forwards;
}

.word {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.4);
}

.word:hover .char {
  transform: rotateX(-360deg);
  color: red;
}

.char {
  display: inline-block;
  transition: transform 0.5s linear, color 1s linear; 
}

@media screen and (max-width: 800px) {
  .heading-text {
    font-size: 5rem;
    color: #f93434;
    font-family: "Protest Strike", sans-serif;
  }

  .fs-fantasy {
    font-family: "Protest Strike", sans-serif;
    font-weight: 100;
    font-size: 1.5rem;
    letter-spacing: -1px;
    line-height: 1;
  }
}