/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1e2a78, #090a1a);
    color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
  }
  
  .container {
    text-align: center;
  }
  
  /* Content Animations */
  .content h1 {
    font-size: 5rem;
    color: #f05454;
    animation: fadeIn 2s ease-out forwards;
  }
  
  .content h2 {
    font-size: 10rem;
    margin: 20px 0;
    color: #f05454;
    animation: bounce 2s infinite ease-in-out;
  }
  
  .content p {
    font-size: 1.5rem;
    margin: 10px 0 30px;
    animation: fadeIn 3s ease-out forwards;
  }
  
  .content .button {
    display: inline-block;
    background: #f05454;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background 0.3s ease;
    animation: appear 4s ease forwards;
  }
  
  .content .button:hover {
    background: #d94343;
  }
  
  /* Astronaut Animation */
  .animation img {
    width: 300px;
    animation: float 4s ease-in-out infinite;
  }
  
  /* Keyframes for Animations */
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }
  
  @keyframes appear {
    0% {
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }