﻿
html, body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden; /* Completely disables scrolling */
    position: relative;
}
.BackgroundImage {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@font-face {
    font-family: 'VeteranTypewriter';
    src: url('../../../Fonts/VeteranTypewriter.woff') format('woff');
}

.RotateDeviceBackgroundImage {
    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;
}
.PortraitWhite {
    position: absolute;
    top: 50%;
    color: white;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 4vw;
    text-align: center;
    z-index: 1;
}

@media screen and ( orientation:landscape ) {
    .Landscape {
        display: none !important;
    }
}

@media screen and ( orientation:portrait ) {
    .Portrait {
        display: none !important;
    }
}