<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General Styles */
html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #F1F1F1;
  color: #333;
}

/* Header */
header {
  background-color: #5893CD;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 2em;
  font-weight: bold;
  font-family: 'Bruno Ace', sans-serif;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}

/* Subheader Navigation */
.subheader {
  background-color: #363636;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.subheader-link {
  color: white;
  font-size: 16px;
  text-decoration: none;
}

.subheader-link:hover {
  text-decoration: underline;
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background-color: #D9D9D9;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

main h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

main h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #707070;
}

main p, main ul, main li {
  text-align: left;
  margin-left: 20px; /* Add space to the text */
  margin-right: 20px; /* Add space to the text */
}

/* Footer */
footer {
  background-color: #363636;
  color: white;
  text-align: center;
  padding: 20px 0;
}

footer a {
  color: #5893CD;
  text-decoration: none;
}

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

/* QUIZ FOOTER */
#quiz-footer {
  position: relative;
  width: 100%;
  height: 180px;
  background-color: #5893CD;
  text-align: center;
  padding: 20px 0;
  color: #FFFFFF;
}

#quiz-footer h1 {
  font-family: 'Afacad', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 53px;
  margin: 0;
}

#quiz-footer p {
  font-family: 'Afacad', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  margin: 10px 0 20px 0;
}

.quiz-button {
  display: inline-block;
  width: 137px;
  height: 48px;
  line-height: 48px;
  background-color: #FFFFFF;
  color: #5893CD;
  font-family: 'Afacad', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.quiz-button:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}

/* Adjust Spacing for Content Only */
h1, h2, h3, p, ul, ol {
  margin-left: 20px; /* Add space to the left */
  margin-right: 20px; /* Add space to the right */
}
</pre></body></html>