* {
  cursor: url("./cursor.webp"), auto;
}

body {
  background: linear-gradient(to bottom, #90dffe 0%, #38a3d1 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 2rem;
}

@media (max-width: 46.875rem) {
  body {
    padding: 1rem;
  }
}

::-webkit-scrollbar {
  width: 0.6rem;
  background: #db7812;
}

::-webkit-scrollbar-thumb {
  background: #ad520b;
}

.marquee {
  z-index: -10;
  position: fixed;
  opacity: 0.8;
  display: flex;
  animation: marquee 500s linear infinite running;
}

.marquee2 {
  z-index: -10;
  position: fixed;
  opacity: 0.8;
  display: flex;
  animation: marquee 700s linear infinite running;
  bottom: 0;
}

.marquee .clouds {
  width: 100%;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes colorShift {
  0% {
    filter: drop-shadow(0 0 5px #ffffff);
    text-shadow: 0 0 20px #ffffff, 0 0 30px #ffffff, 0 0 40px #4568dc;
  }

  100% {
    filter: drop-shadow(0 0 20px #4568dc);
    text-shadow: 0 0 25px #4568dc, 0 0 35px #4568dc, 0 0 45px #ffffff;
  }
}

body,
html {
  font-family: 'Roboto', sans-serif !important;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  perspective: 2px;
}

.container {
  margin-top: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 10px;
  z-index: 10;
}

a {
  color: white !important;
}

.title {
  font-size: 4em;
  background-image: linear-gradient(-45deg, #b06ab3 0%, #4568dc 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: colorShift 3s ease-in-out infinite alternate;
}

@media screen and (max-width: 570px) {
  .title {
    font-size: 3em;
  }
}

@media screen and (max-width: 435px) {
  .title {
    font-size: 2em;
  }
}