          @font-face {
  font-family: 'Biennale';
  src: url('../fonts/Biennale-Bold (4).otf') format('opentype');
  font-style: normal;
}
   
   :root {
      --white: #ffffff;
      --black: #000000;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
   font-family: 'Biennale';
    }

    body {
      width: 100%;
      min-height: 100vh;
      background: var(--black);
      color: var(--white);
    }

    /* ================= HEADER ================= */
    header {
      height: 14vh;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--black);
    }

    header img {
    width: 12vw;
    max-width: 12rem;
    min-width: 6rem;
    }

    /* ================= HERO ================= */
    .hero {
      position: relative;
      width: 100%;
      height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .hero picture,
    .hero img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
          object-position: 100% 100%;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 0 5vw;
    }

    .hero-content h1 {
      font-size: clamp(2rem, 4vw, 4rem);
      font-weight: 700;
      margin-bottom: 2vh;
    }
    .hero-content h5 {
    font-size: 40px;
    margin: 25px 0px 25px 0px;
    }

    .hero-content button {
     
      padding: 1em 3em;
      font-size: 1.25rem;
      border-radius: 1rem;
      border: 3px solid #fff;
        background-color: #000;
      color: var(--white);
      cursor: pointer;
          font-weight: 700;
    }


    /* ================= FOOTER ================= */
    footer {
      height: 10vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--black);
      
    }

    footer a {
      color: var(--white);
      font-size: 1.1rem;
      text-decoration: none;
    }

    /* ================= MOBILE ================= */
    @media (max-width: 768px) {
      header {
        height: 12vh;
      }

      .hero {
        height: 80vh;
      }

      .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 3.3vh;
      }

      header img {
        width: 45vw;
      }
      
      .hero-content button {
    font-size: 1.2rem;
      }
      .hero-content h5 {
        font-size: 25px;
    }
    }