@import "reset.css";
@import "fonts.css";

body {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: white;
  background-color: #1e1e1e;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 0.5rem;
  position: relative;
  overflow: hidden;
}

.main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.icon-wrapper {
  display: flex;
  margin-bottom: 2rem;
}

.icon {
  position: relative;
  height: 5rem;
  width: 5rem;
}

.text {
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 3.813rem;
  letter-spacing: -0.063rem;
}

.text span {
  text-decoration: underline;
  text-decoration-color: #dd1cfa;
  text-underline-offset: 0.1em;
}

.gradient {
  background-image: url("../assets/images/gradient-mobile-v3.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -20rem;
  left: -20rem;
  right: -20rem;
  bottom: -20rem;
  animation-name: spin;
  animation-duration: 15000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.footer {
  font-size: 0.688rem;
  padding: 2.5rem 0;
  display: flex;
  color: #b9b9b9;
  align-items: center;
  z-index: 1;
}

.footer span {
  margin-right: 0.5rem;
}

.footer img {
  opacity: 0.5;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  .icon-wrapper {
    display: flex;
    justify-content: center;
  }

  .text {
    text-align: center;
  }

  .footer {
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .page-wrapper {
    padding: 0 2.5rem;
  }

  .gradient {
    background-image: url("../assets/images/gradient-desktop-v3.svg");
    top: -15rem;
    left: -40rem;
    right: 0;
    bottom: -15rem;
    opacity: 0.7;
  }

  .text {
    font-size: 6rem;
    line-height: 7rem;
  }
}
