﻿
html, body {
    font-family: 'impact'; 
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden; /* Completely disables scrolling */
    position: relative;
}
@font-face {
    font-family: 'impact';
    src: url('../fonts/impact.ttf') format('truetype');
}
.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 */
}

.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; 
}


.LandscapeWhite {
    position: absolute;
    top: 50%;
    color: white;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 30px;
    text-align: center;
    z-index: 1;
}

@media screen and ( orientation:landscape ) {
    .Landscape {
        display: none !important;
    }
}

@media screen and ( orientation:portrait ) {
    .Portrait {
        display: none !important;
    }
}

.NavButtonsContainer {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
   margin-top:20px;
   margin-left:20px;
}
.NavDisplayHolder {
    width: 20%;
}
.NavButton1 {
    align-items: center;
    justify-content: center;
}
.NavButton2 {
   height:20px;
}
.NavButton3 {
    display: flex;
    align-items: center;
}
.NavButton4 {
    display: flex;
    align-items: center;
}
.NavHome {
}
.NavInfo {
   
}
.NavAnswer{

}
.NavButton3Image {
   
}
.Answer{

}
