html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: black;
}

canvas {
    display: block;
    margin: auto;
}

#game_info {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgb(0, 0, 0);
    padding: 1rem;
    color: white;
    font-size: 1.5rem;
    opacity: 0.75;
    text-align: right;
}

#game_info p {
    margin: 0px;
    padding: 0px;

}

#game_over {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
}

#game_over h1 {
    font-size: 3rem;
}

#game_over p {
    font-size: 2rem;
}