body {
  margin: 0;
  min-height: 100vh;
  background-color: black;
  color: white;
  font-family: monospace; 
  
  display: flex;
  align-items: center;
  justify-content: center;
}


.warning-container {
  max-width: 600px;
  width: 90%;
  padding: 30px;

  border: 1px solid red;
  background-color: #000;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
  text-align: left;
}

#mary-text {
  white-space: pre-line;

  color: #fff;
  font-size: 10px;
  letter-spacing: 1px;

  opacity: 0;
  transition: opacity 2s ease;

  pointer-events: none;
}


.warning-container p {
  margin-bottom: 1em;
}


.warning-container .question {
  color: red;
  font-weight: bold;
}


.choices a {
  display: block;
  color: white;
  text-decoration: none;
  margin-top: 0.5em;
}

.choices a:hover {
  color: red;
  text-decoration: underline;
}