body {
    background-color: black;
    background: linear-gradient(135deg, #0f0c29, #1e4976, #3d6b99);
    color: navy;
    font-family: "Comic Sans MS", cursive;
    text-align: center;
  }
  
  h1 {
    font-size: 60px;
    color: lime;
    text-shadow: 4px 4px red;
  }

  .subtitle {
    font-family: "Great Vibes", cursive;
    font-size: 2.4rem;
    color: #e8d5b7;
    margin: -0.2em 0 0.4em;
    letter-spacing: 0.02em;
    font-style: italic;
  }
  
  h2 {
    color: blue;
    background-color: orange;
  }
  
  p {
    font-size: 18px;
  }
  
  .blink {
    animation: blink-animation 0.8s steps(2, start) infinite;
  }
  
  @keyframes blink-animation {
    to {
      visibility: hidden;
    }
  }
  
  marquee {
    font-size: 20px;
    color: cyan;
    font-weight: bold;
  }

  .details {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}