* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'RebondGrotesque';
  background: white;
  overflow: hidden;
}

@font-face {
  font-family: RebondGrotesque;
  src: url(fonts/ESRebondGrotesque-Medium.woff2);
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  font-size: 1em;
  border-bottom: 1px solid #000;
  background: white;
  z-index: 10;
}

/* Container prend toute la hauteur de l'écran */
.container {
  display: flex;
  height: 100vh;
}

/* Colonnes gauche / droite */
.left, .right {
  width: 50%;
  height: 100%;
}

/* Gauche : contenu centré verticalement + padding + border droite */
.left {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #000;
  padding: 20px;
  font-size: 2.5rem;
  line-height: 1.2;
}

/* Droite : scroll interne, padding top pour pas cacher le haut */
.right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: scroll;
  padding: 60px 20px 20px; /* 60px top pour libérer l'espace du header */
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  text-decoration;none;
}

.right a{
  text-decoration: none;
  color: black;
}

  a:hover {
    opacity: 0.6;
    text-decoration: underline;
  }


/* Vidéos responsives */
video {
  width: 100%;
  max-height: 400px;
}
