@charset "UTF-8";


.home_page {
    display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  aspect-ratio: 16 / 9;
  height: auto;
  width: auto;
  min-height: 0;
  min-width: 0;
  max-height: 100%;
  max-height: 100dvh;
  max-width: 100dvw;
  max-width: 120em;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.home {
    height: 100vh;
    height: 100dvh;
    width: 100vw;
    object-fit: cover;
    background-image: url("../images/Background_Corridor_Cropped.webp");
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    /*overflow: hidden;*/
    
}

@media screen and (max-width: 768px), (orientation: portrait) {
    .home_page {
        aspect-ratio: auto;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    }
    
    .home {
        background-position: center center;
    }
    
    
}
