﻿
html, body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden; /* Completely disables scrolling */
    position: relative;
}

.rotationWarning {
    display: none;
}

@media (orientation: landscape) {
    .rotationWarning {
        width: 100dvw;
        height: 100dvh;
        position: absolute;
        background-image: url(../Images/mainBackground.svg);
        z-index: 20;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 5dvw;
        font-weight: bold;
        color: white;
    }
}