html {
  font-family: 'Lora', serif;
  height: 100%;
  background-attachment: fixed;
  background-image: url("background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

html, body {
  overflow-x: hidden;
  overflow-y: hidden;
}

body {
  position: relative;
}

#video-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

video {
  outline: unset;
}

button {
  font-size: 16px;
  background-color: #fff;
  border: 1px solid #def0d9;
  font-family: 'Lora', serif;
  padding: 6px 12px;
  z-index: 10;
}

button:hover {
  cursor: pointer;
  background-color: #def0d9;
}

#sound {
  position: fixed;
  top: 24px;
  left: 24px;
}

#button-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

button + button {
  margin-left: 8px;
}

@keyframes FadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.message {
  font-size: 48px;
  text-align: center;
  color: #fff;
  background-color: #23361d;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: 2.4s ease-in-out 0s 1 FadeOut;
	animation-fill-mode: both;
}