@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: radial-gradient(circle, #2b2b2b, #000);
  color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  max-width: 600px;
}

h1 {
  font-size: 3rem;
  color: #8a2be2;
}

.subtitle {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

button {
  padding: 1rem;
  font-size: 1rem;
  background: #111;
  color: #fff;
  border: 1px solid #8a2be2;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #8a2be2;
  color: #000;
}

.quote {
  font-size: 1rem;
  color: #aaa;
  margin-top: 1rem;
}
