#game-container {
    position: absolute;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;

    max-width: 2000px;

    background-color: #222;

    overflow: hidden;
}

#canvas-container {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;
}

#main-canvas {
    position: absolute;

    width: 100%;
    height: 100%;
}

#area-name,
#speedrun-timer {
    text-align: center;

    text-shadow: 2px 2px 4px black;
}

#area-name {
    margin-bottom: 0;

    z-index: 1;
}

#speedrun-timer {
    margin-top: 10px;
}


#area-message-display {
    text-align: center;
    font-size: 36px;

    z-index: 1;
    text-shadow: 2px 2px 4px black;
}