* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base */
body {
  font-family: "Times New Roman", Times, serif;
  background: linear-gradient(#384061, #535360);
  color: #e5e7eb;
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Layout */
.container {
  width: 100%;
  max-width: 760px;
  padding: 2rem;
}


.quiz-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  text-align: center;
}

/* Text */
h1 {
  margin-bottom: 2rem;
  font-weight: normal;
}

.subtitle {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 2rem;
}

.question p {
  font-size: 1.1rem;
  max-width: 100ch;
  margin: 0 auto 1.5rem;
}

/* Actions */
.answers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.answer {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: inherit;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease;
}

.answer:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

/* Footer */
.footer-note {
  margin-top: 2rem;
  font-size: 0.75rem;
  opacity: 0.4;
}

.start {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.start {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: inherit;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease;
}

.start:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.image-container {
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
}

.image-container img {
  max-width: 110%;
  height: 150%;
  border-radius: 8px;
  opacity: 0.85;
}
