* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  color: #fff;
  font-family: "Kelly Slab", cursive;
  line-height: 1.5em;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #0b0b0e;
  background-image: radial-gradient(1200px 600px at 10% 10%, rgba(16, 223, 207, 0.25), transparent 60%), radial-gradient(900px 500px at 90% 20%, rgba(223, 34, 207, 0.25), transparent 55%), linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65)), url("https://picsum.photos/1920/1080");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

main {
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  justify-content: center;
  align-items: center;
  padding: 8vmin 6vmin;
  text-align: center;
}
main .simple-block {
  flex-grow: 1;
  align-self: center;
  height: 20vh;
  margin: 10px;
  padding: 10px;
}
main .second {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
main .second h1 {
  text-align: center;
  font-size: clamp(2.4rem, 9vw, 4.14em);
  letter-spacing: 0.08em;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  cursor: none;
}
main .second h1:hover {
  animation: animText 5s infinite;
}

@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
  main {
    padding: 10vmin 6vmin;
  }
  main .second h1 {
    letter-spacing: 0.04em;
  }
}
@keyframes animText {
  0% {
    text-shadow: -3px -2px 0px rgb(16, 223, 207);
  }
  25% {
    text-shadow: 3px 3px 0px rgb(244, 150, 150);
  }
  50% {
    text-shadow: -4px 3px 0px rgb(55, 150, 150);
  }
  75% {
    text-shadow: 3px -2px 0px rgb(223, 34, 207);
  }
  100% {
    text-shadow: -3px -2px 0px rgb(16, 223, 207);
  }
}
/*# sourceMappingURL=style.css.map */
