
  
  h1, h2, h3, h4, h5, h6 {
      font-weight: 300;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}
    
  
  .centered-container {
      display: flex;
      justify-content: center; /* Horizontally center the content */
      align-items: center; /* Vertically center the content */
      color: #fff;

      justify-content: center;
      align-items: center;
      color: #fff;
      flex-direction: column;
      
  }
  
  .ratio-sixteen-nine {
      aspect-ratio: 16/9;
  }
  
  .ratio-sixteen-seven {
      aspect-ratio: 16/7;
  }
  
  .ratio-three-one {
      aspect-ratio: 3/1;
  }
  
  .reverse {
      background-color: rgb(164, 110, 75);
  }
  
.extend_hero .navbar {
    background-color: #fff;
}

  .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #000;
      color: #000;
      padding: 10px;
      font-weight: 400;
      font-size: 1.2rem;
  }

  .nav-logo img {
      height: 80px; /* Adjust as per your logo's size */
  }
  
  .nav-items {
    display: none;
    width: 100%;
    text-align: center;

    position: absolute;
    background-color: rgb(255, 255, 255);
    left: 0px;
    z-index: 10001;
    top: 0;
    padding: 50px 0;
}

.nav-open .nav-items {
    display: block;
}

  .nav-items a {
      color: #000;
      text-decoration: none;
      padding: 10px;
      display: block;
  }
  
  .nav-toggle {
      display: flex;
      flex-direction: column;
      gap: 5px;
      border: none;
      background-color: transparent;
      z-index: 10030;
  }
  
  .nav-toggle span {
      display: block;
      width: 25px;
      height: 2px;
      background-color: #fff;
  }

  .nav-open .nav-toggle span {
    background-color: #000;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

  .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
  }

  .extend_hero .navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 100000;

  }


  
  .content {
      margin: auto;
      padding: 20px;
      font-size: 1.2rem;
  }
  
  .footer {
      display: flex;
      justify-content: center; /* Horizontally center the content */
      align-items: center; /* Vertically center the content */
  
      aspect-ratio: 8/1;
      background-color: #fff;
      color: #000;
      text-align: center;
      padding: 10px;
      font-size: 14px;
  }


  
  
      .wave-background {
          background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 1000 100"><path fill="none" stroke="rgb(164, 110, 75)" stroke-width="2" d="M0,50 Q250,100 500,50 T1000,50"/></svg>') repeat-x;
          height: 150px; /* Adjust as needed */
      }
  



/* FRONTPAGE */


.main-image {
    background-image: url(/static/FOTO_39_Hands_dans_for_halsa_by_delafoi_HR.jpg);
    background-size: cover;
    background-position: center;    
    position: relative;
    aspect-ratio: 11/16;
    padding: 30px;
    align-items: normal;
}

.main-image:after {
      content: "";
      background-color: rgba(0, 0, 0, 0.2);
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
}

.main-image h1,
.main-image h2 {
  z-index: 10000;
  text-align: left;
}

.main-image h1 {
    font-size: 2rem;
    font-weight: 600;
}
.main-image h2 {
  font-size: 1.4rem;
}

hr {
    width: 50%;
    margin: 20px auto;
}

@media screen and (min-width: 600px) {
    .main-image {
        aspect-ratio: 16/9;
        align-items: center;
    }   
}


@media screen and (min-width: 800px) {
    .close {
        display: none;
    }

    .navbar {
        padding: 40px;
    }

    .nav-items {
        display: block;
        background-color: transparent;
        width: auto;
        position: relative;
        top: auto;
        left: auto;
        padding: 0;
    }

    .nav-items a {
        display: inline-block;
        color: #fff;
    }

    .nav-toggle {
        display: none;
    }
    .main-image {
        aspect-ratio: 16/9;
        align-items: center;
    }

    .main-image h1 {
        font-size: 4.5rem;
        font-weight: 500;
      }
      .main-image h2 {
        font-size: 1.4rem;
      }

      .content {
        width: 600px;
    }
}