body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #0b0020;
  color: #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  max-width: 600px;
}

.logo {
  width: 250px;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.logo:hover {
  transform: scale(1.1);
}

h1 {
  color: #65b3ff;
  margin-bottom: 10px;
}

p {
  color: #c7c7c7;
  margin-bottom: 30px;
}

button {
  background-color: #5b00d6;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #7d33ff;
}
