/* General page setup */
body {
  background-color: #fef8e7;
  font-family: Georgia, serif;
  color: #000;
  margin: 0;
  padding: 0;
}

/* Container for all content */
.container {
  max-width: 650px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* Title styling */
h1 {
  text-align: center;
  font-weight: normal;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Red “The Official” styling */
.official {
  font-size: 1.5rem;
  font-weight: bold;
  color: darkred;
  text-decoration: underline;
  display: inline-block;
  transform: rotate(-5deg);
  margin-bottom: 0.25rem;
}

/* Description paragraph */
.description {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Caution paragraph */
.warning {
  text-align: center;
  font-weight: bold;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

/* Instructions */
.instruction {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Question list */
form ol {
  list-style: decimal inside;
  padding-left: 0;
}

form li {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

/* Checkbox appearance */
input[type="checkbox"] {
  margin-right: 0.5rem;
}

/* Button styling */
button {
  display: block;
  margin: 2rem auto;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #333;
}

/* Result display */
#result {
  text-align: center;
  margin-top: 2rem;
}

#scoreDisplay {
  font-size: 2rem;
  font-weight: bold;
}

#reaction {
  font-size: 1.25rem;
  margin-top: 0.5rem;
}

.hidden {
  display: none;
}
