* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background-color: black;
    color: white;
  }
  
  header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
  }
  
  header h1 {
    font-size: 2rem;
    letter-spacing: 3px;
  }
  
  header a {
    cursor: pointer;
    transition: 0.3s;
  }
  
  header a:hover {
    color: #c73a3a;
  }
  
  .hero {
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.25)), url("hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 80px;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 4rem;
    text-shadow: 0 0 20px black;
    letter-spacing: 2px;
  
  }
  
  .hero button {
    padding: 15px 40px;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .hero button:hover {
    transform: scale(1.05);
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}