/* General */

.flex {
  display: flex;
}

.column {
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.text-white {
  color: white;
}

.text-primary {
  color: #e36924;
}

.uppercase {
  text-transform: uppercase;
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

.island {
  font-family: "Island Moments", cursive;
  font-weight: 400;
  font-style: normal;
}

.arapey {
  font-family: "Arapey", serif;
  font-weight: 400;
  font-style: normal;
}

.green-bg {
  background-color: #000000;
}

.text-center {
  text-align: center;
}

/* Specific */

.content {
  position: relative;
  z-index: 1;
  width: 600px;
  max-width: 80%;
  margin: auto;
}

@media screen and (max-width: 728px) {
  .content {
    width: 90%;
  }
}

h1 {
  font-size: 72px;
  line-height: 72px;
  margin: 0;
  padding: 0;
  padding-top: 50px;
  font-weight: 900;
}

h2 {
  font-size: 48px;
  margin: 0;
  padding: 0;
  padding-top: 10px;
}

.intro-text {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}

.mainLogo {
  width: 120px;
  padding-top: 50px;
}

.cover {
  width: 80%;
  max-width: 400px;
}

.cta {
  font-size: 32px;
  text-decoration: none;
  position: relative;
  /* padding: 20px 55px; */
  transition: 0.2s all ease-in-out;
  transform: scale(1);
  margin-top: 20px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 50px;
  margin-top: 30px;
}

.cta::before {
  position: absolute;
  bottom: -40px;
  left: -40px;
  background-size: contain;
  content: " ";
  width: 60px;
  height: 60px;
  background-image: url("./src/assets/img/UI/bottomLeftCadre.png");
  background-repeat: no-repeat;
  /* background: red; */
}

.cta::after {
  position: absolute;
  top: -20px;
  right: -20px;
  background-size: contain;
  content: " ";
  width: 60px;
  height: 60px;
  background-image: url("./src/assets/img/UI/topRightCadre.png");
  background-repeat: no-repeat;
  /* background: red; */
}

.cta:hover {
  filter: brightness(0) invert(1);
  transform: scale(1.05);
}

/* Clouds */
.clouds-container {
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  object-fit: cover;
  overflow: hidden;
  max-width: 100%;
  position: fixed;
  z-index: 1;
  pointer-events: none;
}

.clouds-container .clouds {
  mix-blend-mode: hard-light;
  opacity: 0.2;

  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  object-fit: cover;
}

.clouds-container .clouds-1 {
  width: calc(100vw + 100px);
  animation: moveBg 20s alternate-reverse infinite linear;
}

.clouds-container .clouds-2 {
  transform: rotate(180deg);
  width: calc(100vw + 200px);
  animation: moveBg2 20s alternate-reverse infinite linear;
}

@keyframes moveBg {
  from {
    transform: translateX(0px);
  }

  to {
    transform: translateX(-100px);
  }
}

@keyframes moveBg2 {
  from {
    transform: rotate(180deg) translateX(200px);
  }

  to {
    transform: rotate(180deg) translateX(0px);
  }
}
