html {
  background-color: fuchsia;
  color: blue;
}

div {
  max-width: 800px;
  padding-left: auto;
  padding-right: auto;
}

video {
  width: 600px;
}

/* Ajout des styles responsive mobile pour la page easter-egg */
@media (max-width: 768px) {
  div {
    max-width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
  }

  h1 {
    font-size: 32px;
    text-align: center;
    word-wrap: break-word;
  }

  video {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  button {
    width: 100%;
    max-width: 300px;
    padding: 15px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }

  button {
    max-width: 250px;
    padding: 12px;
    font-size: 16px;
  }
}
