﻿
html, body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100dvh;
    overflow: hidden; /* Completely disables scrolling */
    position: relative;
}

.NavButtom {
    position: absolute;
    top: 8px;
    left: 8px;
    color: white;
    z-index: 3;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 95px;
    justify-content: space-between;
}

.NavHome{
    position: absolute;
    top: 8px;
    Right: 8px;
    color: white;
    z-index: 3;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    
    justify-content: space-between;
}
.LandscapeWhite {
    display: flex;
    position: absolute;
    top: 0;
    color: white;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 30px;
    background-color: #8D191C;
    text-align: center;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    z-index: 4;
}

@media screen and ( orientation:landscape ) {
    .Landscape {
        display: none !important;
    }
}

@media screen and ( orientation:portrait ) {
    .Portrait {
        display: none !important;
    }
}


.informationtext {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    z-index: 4;
    width: 70%;
}