body {
    background-color: black;
    overflow: hidden;
    /* here so browser doesn't have a scrollbar */
    margin: 0;
}

h1 {
    color: white;
    text-align: center;
}

p {
    color: white;
    text-align: center;
}

div {
    /* to center the text that first pops up*/
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

#game-over {
    display: none;
}

#game-object {
    /* to fullscreen the canvas */
    display: block;
    width: 100vw;
    height: 100vh;
}