/* style.css */

body {
  background-color: #8d53ff;
  font-family: Arial, sans-serif;
  color: white;
  padding: 20px;
  text-align: center;           /* Center text */
  display: flex;                /* Enable flexbox layout */
  flex-direction: column;      /* Stack elements vertically */
  align-items: center;         /* Center horizontally */
  justify-content: center;     /* Optional: center vertically if needed */
  min-height: 100vh;           /* Fill screen vertically */
}

h1 {
  color: #ff6600; /* Nickelodeon orange */
}

h2, h3 {
  color: #7cfc00; /* Slime green */
}

a {
  color: #ffffff;
  text-decoration: underline;
}

ul {
  list-style-type: square;
  padding-left: 0;
  text-align: left; /* Keep list items readable */
  max-width: 600px;
}

p {
  max-width: 800px;
  line-height: 1.6;
}

/* horizontal */
hr {
  border: none;
  height: 2px;
  background-color: #ff6600;
  width: 60%;
  margin: 40px auto;
}
