﻿


 
html, body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden; /* Completely disables scrolling */
    position: relative;
}

.MainBackgroundImage {
    position: absolute; /* Position the image absolutely */
    top: 0;
    left: 0;
    width: 100vw; /* Set width to 100% of the viewport width */
    height: 100vh; /* Set height to 100% of the viewport height */
    object-fit: cover; /* Maintain aspect ratio while covering the screen */
    z-index: -1; /* Ensure the image stays behind other content */
}

/*.PleaseWait {
    position: absolute;*/ /* Position the image absolutely */
    /*color:orangered;
}*/
.PleaseWait {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: orangered;
    font-size: 18px;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid orangered;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-bottom: -5px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
@font-face {
    font-family: 'Iowan Old Style';
    src: url('../fonts/iowanoldstyle_bold.otf') format('opentype');
}

.LandscapeWhite {
    font-family: "Iowan Old Style";
    position: absolute;
    top: 50%;
    color: white;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 30px;
}

@media screen and ( orientation:landscape ) {
    .Landscape {
        display: none !important;
    }
}

@media screen and ( orientation:portrait ) {
    .Portrait {
        display: none !important;
    }
}