  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body, html {
      height: 100%;
      font-family: 'Space Grotesk', sans-serif;
    }

  .hero {
  height: 100vh;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('images/BG.png') no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  gap: 20px;
}


    h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .button {
      padding: 15px 30px;
      font-size: 1.2rem;
      color: white;
      background-color: #ffffff33;
      border: 2px solid white;
      border-radius: 30px;
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
      text-decoration: none;
    }

    .button:hover {
      background-color: white;
      color: #2575fc;
    }