body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto Mono', monospace;
  background: linear-gradient(to bottom right, #222, #555);
  color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  max-width: 600px;
}

.logo {
  width: 160px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

p {
  font-size: 1rem;
  margin-bottom: 15px;
}

button {
  background-color: #ff4081;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #e91e63;
}
