* {
  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.png");
  background-size: cover;
  background-repeat: no-repeat;
}

body::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background-color: #ffffff88;
}

.wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  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: #59007A;
  font-size: 24px;
  font-weight: 700;
}

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

  &:hover {
    transform: scale(1.02);
  }
}

.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%;
	}
}