* {
    margin: 0px;
    padding: 0px;
}

#instructions {
    margin: 5px;
    padding: 20px;
    width: fit-content;
    border: 1px solid black;
    background-color:blanchedalmond;
}

#canvas {
    z-index: -1;
    border-radius: 1vmin;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-61%, -29.7%);
    width: 69%;
    height: 59%;
    image-rendering: pixelated;
}

#game_scene {
    display: none;
    position: fixed;

    z-index: -1;

    top: 50%;
    left: 50%;

    background-image: url("img/television.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    transform: translate(-50%, -50%);
    width: 90vmin;
    height: 90vmin;
}

#load_button {
    position: fixed;

    top: 50vh;
    left: 50vw;

    transform: translate(-50%, -50%);

    cursor: pointer;
    width: 30vmin;
    height: 30vmin;

    background-image: url(img/console.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;

    transition-property: width, height;
    transition-duration: 1s;
}

#load_button:hover {
    width: 50vmin;
    height: 50vmin;
}