
 
.mobile{
   display: none;
   /* max-height: fit-content; */
   /* height: max-content; */
   height: auto;
}
.tab{
   height: auto;
   display: none;
}
 .Window{
display: block;
width: 100%;
height: 100vh;
height: fit-content;
 }
@media only screen and (min-width: 601px) and (max-width: 1100px) {
    /* @media only screen and (min-width: 201px) and (max-width: 450px) { */
    .tab{ background-image: url("Website-Under-Maintenance_tabview.png");
    width: 100%;
    display: block !important;
    height: 100vh !important;

    }
 .Window , .mobile{
display: none; 
}
}

@media only screen and (min-width: 100px) and (max-width: 600px) {
    .mobile {
         background-image: url("Website-Under-Maintenance_mobile.png");
    width: 100%;
    display: block !important;
    /* max-height: 500px */
    height: 100vh;

    }
    .Window , .tab{
        display: none; 
        }
}

