* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: "Arial", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.5s ease;
}

.title {
  font-size: 4em;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.description {
  margin: 20px 0;
  font-size: 1.5em;
  opacity: 0.7;
}

button {
  background-color: #555;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1.2em;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #777;
}

.footer {
  margin-top: 40px;
  font-size: 0.7em;
  opacity: 0.5;
}
