body {
    margin: 0;
    padding: 0;
    background-color: dimgrey;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
}
#title {
    text-align: center;
    margin: 1.75em 0 0 0;
    color: chartreuse;
}
#game {
    display: inline-block;
    text-align: center;
    margin: 1em;
    width: 1000px;
    height: 750px;
    border: 2px solid yellow;
    background-color: black;
    padding: 2px;
}
#stats {
    display: inline-flex;
    color: bisque;
    font-weight: bold;
}
#level {
    display: grid;
    width: 100px;
    text-align: left;
}
#lives {
    display: grid;
    width: 700px;
    text-align: left;
}
#score {
    display: grid;
    width: 200px;
    text-align: right;
}
#message {
    color: gold;
}