body {
    display: grid;
    align-items: center;
    justify-content: center;
    color: black;
    background-color: red;
    text-align: center;
}

h1 {
    display: inline;
    text-align: center;
}

img {
    margin-top: 5px;;
    margin-bottom: 5px;
}

#buttons-div {
    display: flex;
    justify-content: center;
    gap: 10px;
}

#new-game-button {
    width: 150px;
}

#new-game-button:hover {
    color: red;
}

#status-bar {
    margin: 5px;
    color: gray;
}

#status-bar:hover {
    margin: 5px;
    color: yellow;
}

#begin-button {
    margin: 5px;
}

#load-game-button {
    width: 150px;
}

#load-game-button:hover {
    color: red;
}

#saved-games {
    border: 1px;
}

#help-context {
    text-align: center;
}