
.enter-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  color: silver;
  border: 2px solid silver;
  text-decoration: none;
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  transition: all 0.3s ease;
}
.enter-button:hover {
  background-color: silver;
  color: #0d0d0d;
  box-shadow: 0 0 10px silver;
}

.video-background {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -2;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  z-index: -1;
}

.center-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
