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

.main {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(15, 15, 15, 0.5), rgba(15, 15, 15, 0.5)),
    url("/img/bg-mob.webp");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (min-width: 744px) {
  .main {
    background: linear-gradient(rgba(15, 15, 15, 0.5), rgba(15, 15, 15, 0.5)),
      url("/img/bg-tab.webp");
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (min-width: 1440px) {
  .main {
    background: linear-gradient(rgba(15, 15, 15, 0.5), rgba(15, 15, 15, 0.5)),
      url("/img/bg-desk.webp");
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.logo-wrap {
  position: absolute;
  top: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;

  p {
    color: #fff;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
  }
}

@media screen and (max-width: 390px) {
  .logo-wrap p {
    font-size: 24px;
  }
}

.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: #0b8078;
  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;
}
@media (max-width: 900px) {
  .hero__button {
    font-size: 25px;
    padding: 16px 16px;
  }
}
@media (max-width: 685px) {
  .hero__button {
    font-size: 20px;
  }
}
@media (min-width: 400px) {
  .hero__button {
    width: 300px;
  }
}
@media (min-width: 600px) {
  .hero__button {
    width: 400px;
  }
}
@media (min-width: 744px) {
  .hero__button {
    width: 500px;
    font-size: 28px;
  }
}
@media (min-width: 1440px) {
  .hero__button {
    width: 800px;
    font-size: 30px;
  }
}

video {
  margin: 20px auto;
  max-width: 800px;
  width: 100%;
}

@media (max-width: 800px) {
  video {
    max-width: 450px;
  }
}

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