body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }
  
  .image-container {
    background-image: url('main-image-full-site.png'); /* Path to the desktop version */
    background-size: contain; /* Change to 'contain' to ensure full visibility */
    background-position: center;
    background-repeat: no-repeat; /* Add this to prevent image repetition */
      width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
  }
  
  .coming-soon {
    position: absolute;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    font-size: 2em;
    border-radius: 5px;
  }
  
  /* Adjustments for mobile devices in portrait orientation */
  @media (max-width: 767px) {
    .image-container {
      background-image: url('Mobile1-v.webp'); /* Path to the mobile portrait version */
    }
  }
  
  /* Adjustments for mobile devices in landscape orientation */
  @media (max-width: 767px) and (orientation: landscape) {
    .image-container {
      background-image: url('Mobiel1.h.webp'); /* Path to the mobile landscape version */
    }
  }
  