
body {
  margin: 0;
  font-family: 'Comic Neue', cursive;
  background: white;
  color: #5a2c84;
  display: flex;
  flex-direction: column; 
  min-height: 100vh;
}

main {
  flex: 1; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  background: #e0d4ff;
  padding: 2rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(194, 146, 255, 0.4);
  text-align: center;
  max-width: 500px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #a34dd1;
}

/* Question text */
p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Answer buttons */
button {
  display: block;
  width: 100%;
  margin: 0.8rem 0;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  background-color: #d6a7ff;
  border: none;
  border-radius: 10px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

footer {
  background: transparent;
  text-align: center;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: #9b6fc1;
  margin-top: auto;
}

footer a {
  color: #9b6fc1;
  text-decoration: none;
  margin: 0 0.4rem;
}

footer a:hover {
  text-decoration: underline;
}
