body {
  margin: 0;
  font-family: "Radio Canada", sans-serif;
}

.main {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("/img/bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
.main::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(5px);
}

.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%;
  }
}
.hero__button {
  display: block;
  width: 270px;
  padding: 16px 0;
  /* --- CHANGE BG --- */
  background: #e60505;
  border-radius: 12px;
  margin: 0 auto;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-wrap {
  overflow: auto;
  width: 100%;
  max-width: 500px;
  max-height: calc(100% - 20px);
  margin: 10px;
}

.link {
  background-color: #4169e1;
  padding: 16px 24px;
  max-width: 350px;
  width: 100%;
  border-radius: 16px;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  transform: scale(1);
  transition: transform 0.4s ease;

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

.wrapper {
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.text {
  max-width: 450px;
  font-size: 26px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  z-index: 2;
}

.links {
  position: absolute;
  color: #fff;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

@media (max-width: 500px) {
  .link {
    max-width: 300px;
  }
}
