body {
    background-color: darkslategrey;
    background-image: url("/img/cheshire_cat.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}
.rules {
    display: flex;
    justify-content: left;
    padding-left: 100px;
    vertical-align: bottom;
    color: honeydew;
    font-family: 'Balsamiq Sans', cursive;
}
.wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 150px;
}
.game-area {
    width: 300px;
    height: 300px;
    display: flex;
    flex-wrap: wrap;
    margin: 150px 100px 100px 100px;
}
.cell {
    border: 1px solid aquamarine;
    width: 100px;
    height: 100px;
    box-sizing: border-box;
    font-family: 'Gloria Hallelujah', cursive;
    font-size: 50px;
    color: honeydew;
}
h1 {
    font-family: 'Gloria Hallelujah', cursive;
    font-size: 70px;
    color: honeydew;
    margin-bottom: 100px;
    margin-top: 30px;
}
h5 {
    font-family: 'Balsamiq Sans', cursive;
    font-size: 20px;
    color: honeydew;
    padding-left: 90px;
}
.modal-content {
    background-image: url("/img/finish.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}
.modal-content, #restart {
    color: honeydew;
    text-shadow: 2px 2px black;
    font-family: 'Balsamiq Sans', cursive;
    font-size: 25px;
    opacity: 100;
}
@media screen and (max-width: 500px){
    .rules {
        padding: 0px;
    }
    .cell {
        width: 60px;
        height: 60px;
    }
    .game-area {
        width: 180px;
        height: 180px;
        margin: 50px auto;
    }
    .wrap {
        display: block;
        margin-top: 0px;
    }
    body {
        background-image: url("/img/cheshire_cat_mobile.jpeg");
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 900px;
    }
    h5 {
        padding-left: 30px;
    }
}
