* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  padding: 10px;
}
body::before {
  z-index: -1;
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/img/bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
body::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
}
.wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.links {
  position: absolute;
  bottom: 0;

  a {
    color: #000;
    text-decoration: none;
    font-weight: 700;

    &:hover {
      text-decoration: underline;
    }
  }
}
h3 {
  color: #1414b8;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.link {
  display: block;
  max-width: 600px;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  background: #811fae;
  border-radius: 50px;
  z-index: 1;
  transition: all 0.3s;
  box-shadow: 0 0 5px rgba(129, 31, 174, 0.5);
  animation: pulse 1s infinite alternate;
}

.link:hover {
  animation: none;
  background: #591479;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}

.link:active {
  animation: none;
  transform: translateY(0);
  box-shadow: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 5px 0 rgba(129, 31, 174, 0.7),
      0 0 10px 0 rgba(129, 31, 174, 0.5);
  }
  100% {
    box-shadow: 0 0 5px 1px rgba(255, 255, 255, 0.8),
      0 0 20px 10px rgba(129, 31, 174, 0.8),
      0 0 30px 15px rgba(129, 31, 174, 0.5);
  }
}

@media (min-width: 744px) {
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 32px;
  }
  .link {
    font-size: 36px;
  }
  .wrapper {
    padding-top: 200px;
  }
}
