@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.inter-500 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.inter-800 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

.inter-900 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}

.inter-400 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

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

body {
  background: #150f4d;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  padding: 2rem;
  text-align: center;
  position: relative;
}



.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0px auto 0 auto;
  overflow: hidden;
}

.video-container:hover {
  transform: scale(1.02);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}


.main-text {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #ffffff, #e0e0e0);
  background-clip: text;
}



@media (max-width: 768px) {
  .main-text {
    font-size: 1.4rem;
  }
}


.br-mobile {
    display: none;
}

@media (max-width: 768px) { /* ou la largeur mobile que tu veux */
    .br-mobile {
        display: block;
        height: 0; /* évite un espace vertical inutile */
    }
    .br-mobile::after {
        content: "";
        display: block;
    }
}