* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 100vh;
  z-index: 1;
  padding: 10px;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/bg.webp") no-repeat center / cover;
  z-index: -1;
  filter: blur(4px);
}

.title {
  max-width: 600px;
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.link {
  position: relative;
  background-color: blue;
  text-align: center;
  padding: 16px 20px;
  display: block;
  font-size: 32px;
  font-weight: 700;
  border-radius: 16px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  max-width: 400px;
  width: 100%;
  transform: scale(1);
  transition: transform 0.4s ease, background-color 0.4s ease;

  &:hover {
    transform: scale(1.02);
    background-color: rgb(0, 0, 165);
  }
}

.links {
  position: absolute;
  bottom: 20px;
  left: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  transform: translate(-50%, -20px);

  a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
  }
}

.flare {
  position: absolute;
  top: 0;
  height: 100%;
  width: 25px;
  transform: skewX(-45deg);
  animation: flareAnimation;
  left: 80%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.4)
  );
  animation: flareAnimation 3s infinite linear;
}

@keyframes flareAnimation {
  0% {
    left: 10%;
  }
  100% {
    left: 80%;
  }
}
