.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.box {
  border: none;
  padding: 2rem;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
  max-width: 380px;
  max-height: 300;
  width: 300px;
  text-align: center;
  font-family: "Google Sans Code", monospace;
  font-size: 300%;
  background: #bebebe;
  border-radius: 10px;
  font-size: 12px;
  box-shadow: 0.5px 0.5px 0 0.5px black, inset 1px 1px #c2c6ca,
    inset -1px -1px #85898d, inset 2px 2px white;
  transition: background-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.message {
  opacity: 0;
  animation: apparaitre 0s ease 7s forwards;
}

@keyframes apparaitre {
  to {
    opacity: 1;
  }
}

.h1 {
  font-family: "Google Sans Code", monospace;
  color: white;
}

.h2 {
  font-family: "Google Sans Code", monospace;
  color: white;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  flex-direction: column;
}

.button-group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.button {
  border: none;
  padding: 2rem;
  flex-flow: column nowrap;
  justify-content: space-between;
  align-items: center;
  max-width: 380px;
  width: 200px;
  text-align: center;
  font-family: "Google Sans Code", monospace;
  font-size: 300%;
  background: #c2c6ca;
  border-radius: 10px;
  font-size: 12px;
  box-shadow: 0.5px 0.5px 0 0.5px black, inset 1px 1px #c2c6ca,
    inset -1px -1px #85898d, inset 2px 2px white;
  transition: background-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.button:hover {
  background-color: #6c6c6c;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
