body {
  font-family: 'Arial', sans-serif;
  background-color: #1e1e2f;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  color: #c1e1c1;
}

.container {
  text-align: center;
  padding: 20px;
  border: 5px solid #4b7bec;
  background: #3a3a52;
  border-radius: 15px;
  width: 80%;
  max-width: 500px;
  box-shadow: 0px 0px 60px rgba(255, 255, 255, 0.2);
}

h1 {
  font-size: 2em;
  color: #8ac4d0;
}

button {
  background-color: #5c95ff;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #88b4ff;
}

.fortune {
  margin-top: 20px;
  font-style: italic;
  font-size: 1.2em;
  color: #d1c4e9;
}
