
html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
    position: relative;
}

#layout {
    position: absolute;
    width: 100%; height: 100%;
    display:grid;
    grid-template-columns: 1fr max-content 1fr;
    align-items: center;
}
#layout > div {
    overflow: hidden;
}
#left, #right {
    min-height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#left img {
    max-width: 100%;
    max-height: 50%;
    min-width: 500px;
}
#right {
    padding: ;
}
#right img {
    margin:10%;
    width: 50%;
    min-width: 200px;
    max-width: 300px;
}
@media (max-aspect-ratio: 3/3) {
    #left img, #right img {
        display:none;
    }
}

#background {
    background-image: url(WGV_Parcade_Bg.png);
    background-position: center;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
}

div#gameContainer {
    box-shadow: 0 0 100px 0px #000000dd;
    background-image: url(../BitteschoenGames_clean_Ladescreen_Hochformat.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

div#gameContainer canvas {
    position: absolute;
}

div#gameContainer canvas[data-pixel-art="true"] {
    position: absolute;
    image-rendering: optimizeSpeed;
    image-rendering: -webkit-crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
}

div#roundProgressBar {
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35%;
    height: 35%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    /*animation: spin 3s linear infinite;*/
    background-image: url(../SCRATCH_Loading.gif);
    /*top: 40%;*/
    z-index: 1;
}
@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

div#loadingText {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 50%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../loading.gif);
    z-index: 1;
}






/*not in use*/
div#emptyBar{
    background: url("progressEmpty.png") no-repeat right;
    float: right;
    width: 60%;
    height: 100%;
    display: inline-block;
}
/*not in use*/
div#fullBar{
    background: url("progressFull.png") no-repeat right;
    float: left;
    width: 40%;
    height: 100%;
    display: inline-block;
}
/*not in use*/
div#progressBar{
    height:25vh;
    width:40vw;
    margin:auto;
    text-align: center;
}
div#backgroundImage {
    width: 100%;
    height: 100%;
    background: #e20074;
    background-image: url("background.png");
}
