<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1 {
  font-family: 'Toonish', sans-serif;
  font-size: 5rem;
  text-shadow: 2px 2px 0 #000;
  color: #ffd800;
  text-align: center;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 4rem; /* adjust as needed to fit in one line */
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 3rem; /* for phones, fine-tune as needed */
    margin-bottom: 0.3rem;
  }
}

h2, h3 {
  font-family: 'Toonish', sans-serif;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.origin-text p {
  max-width: 800px;
  margin: 1rem auto;
  font-size: 1.1rem;
  line-height: 0.8;
  padding: 0 1rem;
  text-align: center;
}

strong {
    font-family: 'Toonish', sans-serif;
    font-weight: bolder;
    font-size: 2rem;
}

body {
  font-family: 'Mouse Memoirs', sans-serif;
  background: #fff2cc;
  font-weight: lighter;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

}

a {
  text-decoration: none;
  color: #ffd800;
  text-shadow: 0.5px 0.5px 0 #000;

}

img {
  max-width: 100%;
  height: auto;
}

/* Hero Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;

}

.hero-text {
  flex: 1;
  padding: 1rem;
}

.hero-text h1 {
  font-size: 6rem;
  color: #ff6600;
}

.hero-img {
  flex: 1;
  text-align: center;
}

.btn {
  background: #ffd800;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  margin-top: 1rem;
  display: inline-block;
}

/* Origin Story Panels */
.origin-story {
  padding: 3rem 1rem;
  background: #f9f9f9;
  text-align: center;
}

.panels {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.panel {
  background: #fff;
  border: 2px solid #ccc;
  padding: 1.5rem;
  flex: 1 1 250px;
  max-width: 300px;
  font-style: italic;
}

/* Character Bios */
.character-bios {
  padding: 3rem 1rem;

  text-align: center;
}

.bio-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 2rem;
}

.bio-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: center;
}

/* Call to Action */
.cta {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.btn-glow {
  background: #ffd800;
  color: #000;
  font-weight: bold;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0px #ccc; }
  50% { box-shadow: 0 0 20px #bcbcbc; }
}

/* Footer */
.footer {
  background: #222;
  color: #ccc;
  padding: 1rem;
  text-align: center;
}

.footer nav a {
  color: #ffd800;
  margin: 0 5px;
}

.mission-points {
  margin: 1rem 0;
  padding-left: 1rem;
}

.point {
  margin-bottom: 0.75rem;

  padding-left: 1rem;
  position: relative;
}

.point::before {
  content: "★";
  position: absolute;
  left: 0;
  color: #ffd800;
}

.origin-story-text {
  border-radius: 20px;
  padding: 2rem;
  margin: 3rem auto;
  font-size: 1.75rem;

}

.origin-story-text h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 3rem;
   font-family: 'Toonish', sans-serif;
  font-weight: bold;
       color: black;


      padding: 10px;
      text-align: center;
      border-radius: 5px;
}

.origin-story-text h3 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-family: 'Toonish', sans-serif;
  font-weight: bold;
       color: black;


      padding: 5xpx;
      text-align: center;
      border-radius: 5px;
}



.origin-story-text p {
  margin-bottom: 1.5rem;
  font-family: 'Mouse Memoirs', sans-serif;
  font-weight: lighter;
}

.mission-points {
  margin: 2rem 0;
  padding-left: 1.5rem;
}

.point {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.point::before {
  content: "✱";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffd800;

}

.flicker-title {
  font-family: 'Betty Noir', cursive;
  font-size: 4rem;
  color: #000;
  text-align: center;
  animation: flicker 2.5s infinite;
  margin: 2rem auto;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 22%, 24%, 55% { opacity: 0.4; }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.5s ease-in forwards;
}

.fade-in-slow {
  opacity: 0;
  animation: fadeIn 3s ease-in forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.vintage {
  border: 3px dashed #000;
  background: #fffaf0;
  font-family: 'Mouse Memoirs', sans-serif;
  font-weight: lighter;
}

.villain {
  background: #2d2d2d;
  color: #f44336;
  border: 2px solid #000;
}

.origin-header, .mission-statement {
  background: #fdf6e3;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}






.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 6rem 2rem;
  color: #111;
  position: relative;
  z-index: 1;
  opacity: 0.9;
  isolation: isolate; /* Prevents blending from affecting children */
}

.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(255, 242, 204, 0.4); /* soft yellow */
  mix-blend-mode: lighten; /* try overlay, multiply, or screen too */
  z-index: -1;
}
</pre></body></html>