body {
    margin: 0px;
    overflow-x: hidden;
    background-color: rgb(222, 224, 218);
    font-family: Arial, Helvetica, sans-serif;
}

.main_content {
    /* text-align: center; */
    margin: auto;
    width: 410px;
}

.game_dash {
    margin-top: 40px;
    width: 100%;
}

.title {
    /* background-color: grey; */
    float: left;
    width: 40%;
    color: darkslategray;
    font-size: xx-large;
}

.score, .highscore {
    float: right;
    width: 50%;
    text-align: right;
    margin-top: 10px;
    padding: 10px;
    background-color: #efefef;
    border-radius: 5px;
}

.buttons {
    height: 60px;
    width: 60px;
    border-radius: 5px;
    border: 0;
}

.iconify {
    width: 100%;
    height: 100%;
}

.buttons:hover:enabled {
    background-color: #9b9b9b;
    cursor: pointer;
}

.buttons .game_buttons {
    clear: left;
    /* background-color: blanchedalmond; */
}

.game_canvas {
    margin-top: 10px;
    border: 5px #b9a78e solid;
    background: #b9a78e;
    border-radius: 5px;
}

.game_over {
    margin-top: 30px;
    text-align: center;
    color: red;
    display: none;
}

.credits {
    margin-top: 20px;
    float: right;
}

/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content */
.modal_content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}