﻿body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #151518;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;    
}
#unity-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #151518;
}
.unity-canvas-default {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #151518;
}

.unity-canvas-game {
    /*width: 1024px; 
    height: 472px;*/
    height: 100%;
    max-height: 80vh;
    aspect-ratio: 2.165 / 1;
    border-radius: 32px;
    border: none;
    background-color: #151518;
    overflow: hidden;
    margin-top: 10%;
    margin-bottom: 10%;
    position: fixed;
}

