#modal {
    display: none;
}

body {
    color: white;
    background-color: black;
}

#game {
    display: grid;
    grid-auto-columns: auto;

    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#game-canvas {
    max-height: 80vh;
    max-width: 100vw;

    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#stat-canvas {
    max-height: 80vh;
    max-width: 40vw;

    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#static {
    width: 100px;
    height: 100px;

    max-height: 80vh;
    max-width: 40vw;

    position: relative;
    bottom: 100%;
    left: 120%;
    transform: translate(-50%, -50%);
}