html,
body {
  overflow: hidden; /* Enlève les barres de scroll */
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

.start {
  position: relative;
  width: 100%;
}

video {
  width: 100%;
  display: block;
}

.button-div {
  position: absolute;
  top: 80%; /* Ajustez la position verticale */
  left: 90%; /* Ajustez la position horizontale */
  transform: translateX(-50%);
  z-index: 10; /* Placez le bouton au-dessus de la vidéo */
}

.button {
  background: #ffffff;
  border-style: solid;
  border-color: #000000;
  border-width: 0.6px;
  padding: 12.63px 29.47px;
  cursor: pointer;
  color: #000000;
  text-align: left;
  font-family: "PlayfairDisplay-Regular", sans-serif;
  font-size: 21.49px;
  font-weight: 400;
}

.button:hover {
  background-color: #000000;
  color: #ffffff;
}
