body {
    margin: 0;
    padding: 0;
    font-family: 'Snailets BRK', sans-serif;
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  
  /* Vidéo de fond qui couvre toute la fenêtre */
  .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  /* Conteneur principal sans overlay sombre */
  .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    height: 100vh;
    color: white;
    background: transparent;
  }
  
  /* Titre agrandi */
  h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-family: 'Snailets BRK', sans-serif;
  }
  
  /* Conteneur des boutons en flex pour que les deux aient la même taille */
  .buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    max-width: 600px;
    margin-top: 2rem;
  }
  
  .buttons-container a {
    flex: 1 1 45%;
    padding: 1rem;
    background-color: #301910;
    color: greenyellow;
    text-decoration: none;
    border: 2px solid #301910;
    border-radius: 20px;
    font-size: 2rem;
    transition: background-color 0.3s, transform 0.3s;
    text-align: center;
  }
  
  .buttons-container a:hover {
    background-color: #D1893D;
    color: black;
    transform: scale(1.05);
  }
  
  /* Ajustements pour mobile */
  @media (max-width: 576px) {
    h1 {
      font-size: 3.5rem;
    }
    .buttons-container a {
      font-size: 1.5rem;
      padding: 0.8rem;
    }
  }
  