/* Set full-screen black background and white text */
html, body {
  height: 100%;
  margin: 0;
  background-color: black;
  color: white;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  overflow: hidden;
}

/* Center everything in the viewport */
.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90%;
  text-align: center;
}

/* Title styling */
h1 {
  font-size: 48px;
  margin-bottom: 30px;
  z-index: 1000
}

/* Button styling */
.btn {
  padding: 20px 30px;
  font-size: 20px;
  color: white;
  background: black;
  border: 1px solid white;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
  background-color: white;
  color: black;
  padding: 20px 30px;
}

/* "Coming soon" text styling */
.coming-soon {
  position: absolute;
  font-size: 14px;
  color: white;
  pointer-events: none;
}

@keyframes fadeOutScale {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

.coming-soon {
  position: absolute;
  font-size: 20px;
  pointer-events: none;
  white-space: nowrap;
  animation: fadeOutScale 4s ease-out forwards;
}


