/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to bottom, #1a1a2e, #6F4777);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 600px;
}

.headline {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.message {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

button {
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: #e94560;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #ff6f61;
}

/* Animation */
.fade-out {
  animation: fadeOut ease-in-out 2s forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  
  to {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none; /* Disable interaction after fade-out */
  }
}
