@font-face {
  font-family: 'Stadion';
  src: url('Stadion.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
 }
 
 
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
 }
 
 
 body {
  font-family: 'Stadion', sans-serif;
  background: radial-gradient(circle at center, #1a1a1a 30%, #000 100%);
  overflow-x: hidden;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 2rem;
  line-height: 1.6;
 }
 
 
 
 
 
 
 /* Header Section */
 .stadium-heading {
  text-align: center;
  margin-bottom: 2rem;
 }
 
 
 .stadium-heading h1 {
  font-size: 3rem;
  text-transform: uppercase;
  color: #ffcc00;
  letter-spacing: 2px;
  animation: pulse 2s infinite ease-in-out;
 }
 
 
 .tagline {
  font-size: 1rem;
  color: #ccc;
  margin-top: 0.5rem;
 }
 
 
 /* Chant Generator */
 .stadium-main {
  max-width: 600px;
  width: 100%;
  text-align: center;
  margin-bottom: 3rem;
 }
 .fun-input {
  width: 80%;
  padding: 1rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 30px;
  margin-bottom: 1rem;
  outline: none;
  background-color: #222;
  color: #fff;
 }
 .fun-button {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  background-color: #ffcc00;
  color: #000;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
 }
 .fun-button:hover {
  background-color: #ffaa00;
 }
 .chant-output {
  margin-top: 1.5rem;
  font-size: 5rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #00ffcc;
  min-height: 2.5rem;
 }
 .chant-image {
  display: block;
  margin: 2rem auto 0 auto; 
  max-width: 100%;
  height: auto;
 }
 
 
 /* Chant animation */
 .animate {
  animation: chant-pop 0.6s ease-out;
 }
 
 
 @keyframes chant-pop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
 }
 
 
 
 
 .stadium-overlay-title {
  font-size: 70px;
  font-weight: bold;
 }
 
 
 
 
 /* Typeface Introduction */
 
 
 .stadium-overlay-subtext {
  font-size: 14px;
 }
 
 
 .type-body {
  font-size: 10rem;
  letter-spacing: 4px;
  color: #ffcc00;
  white-space: nowrap; 
  display: inline-block;
  animation: slideLR 6s linear infinite alternate;
 }
 
 

 @keyframes slideLR {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  45% {
    transform: translateX(100%);
    opacity: 1;
  }
  50% {
  }
  55% {
    opacity: 0; 
    transform: translateX(100%); 
  }
  65% {
    opacity: 1; 
  }
  100% {
    transform: translateX(-100%); 
    opacity: 1;
  }
 }
 
 
 /* Accessibility */
 .visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
 }
 
 
 /* Animation: header pulse */
 @keyframes pulse {
  0%, 100% {
    text-shadow: 0 0 5px #ffcc00;
  }
  50% {
    text-shadow: 0 0 15px #ffaa00, 0 0 30px #ffaa00;
  }
 }
 
 
 /* Responsive Design */
 @media (max-width: 600px) {
  .fun-input {
    width: 100%;
  }
 
 
  .chant-output {
    font-size: 1.5rem;
  }
 
 
  .stadium-heading h1 {
    font-size: 1.8rem;
  }
 }
 