﻿.boxGame {
    /*background: #0b0425; /* viola scuro #0b0425; */
    left: 0%;
    width: 100vw;
    height: 100vh;
    text-align: center;
}

@media screen and (orientation:portrait) {
    /* iOsVersion >= 15.4 */
    .boxGame {
        width: 100dvw !important;
        height: 100svh !important;
    }

    /* iOsVersion < 15.4 */
    .loadedBoxGame {
        height: 85vh !important;
    }
}

@media screen and (orientation:landscape) {
    .boxGame {
        width: 100dvw !important;
        height: 100dvh !important;
    }

    .loadedBoxGame {
        height: 87vh !important;
    }
}

@media screen and (min-device-width: 1200px) {
    .boxGame {
        width: 100% !important;
    }

    body {
        overflow-y: hidden;
    }
}

@media (min-width: 1280px) {
    .boxGame {
        width: 1280px;
        height: 720px;
        margin-left: auto;
        margin-right: auto;
        /*position: relative;*/
    }
}

.game-frame {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    bottom: 0;
}


body {
    /*background: #0b0425; /* viola scuro #0b0425; */ /* verde oliva #428763;*/
    background: #0b0425;
    background-size: cover;
    background-position: center center; /* optional, center the image */
    margin: 0px;
    margin-top: 0px;
}

.noScroll {
    overflow: hidden;
}
