/* styles.css */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
  }
  
  .hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #000, #550000);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin: 0;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin: 1rem 0;
  }
  
  .hero-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #fff;
    background-color: #550000;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .hero-button:hover {
    background-color: #ff5555;
    transform: scale(1.1);
  }
  
  #hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  