body {
    font-family: sans-serif;
    color: #ffffff;
    background-color: #111;
}
header {
    background-color: #222;
    padding: 40px;
    text-align: center;
}
h1 {
    font-size: 40px;
    font-family: "Playfair Display", sans-serif;
    color: #ccc;
    text-shadow: 2px 2px 5px #000;
}
main {
    padding: 30px;
}
div {
    background-color: #222;
    padding: 40px;
}

.tips, .game-description, .gameplay {
    background-color: #222;
    padding: 40px;
}

.game-description {
    text-align: center;
}
.game-description img {
    width: 50%;
    border-radius: 5%;
}
.game-description-text {
    font-size: 20px;
    color: #ccc;
    text-shadow: 1px 1px 2px #000;
}

.gameplay h2 {
    font-size: 24px;
    font-family: "Open Sans", sans-serif;
    color: #ccc;
    text-shadow: 1px 1px 2px #000;
}
.gameplay-list {
    margin-bottom: 40px;
}
.gameplay-list li {
    font-size: 18px;
    color: #ccc;
    text-shadow: 1px 1px 1px #000;
}

.tips h2 {
    font-size: 24px;
    font-family: "Open Sans", sans-serif;
    color: #ccc;
    text-shadow: 1px 1px 2px #000;
}
.tips-list {
    margin-bottom: 40px;
}
.tips-list li {
    font-size: 18px;
    color: #ccc;
    text-shadow: 1px 1px 1px #000;
}

.map-imgs {
    display: inline-block;
    width: 25%;
}

@media only screen and (max-width: 768px) {
    .game-description img {
        width: 90%;
    }
    .game-description-text {
        font-size: 14px;
    }

    .gameplay h2 {
        font-size: 16px;
    }
    .gameplay-list li {
        font-size: 14px;
        color: #ccc;
        text-shadow: 1px 1px 1px #000;
    }
    
    .tips h2 {
        font-size: 16px;
    }
    .tips-list li {
        font-size: 14px;
        color: #ccc;
        text-shadow: 1px 1px 1px #000;
    }

    .map-imgs {
        display: inline-block;
        width: 45%;
    }
}

@media only screen and (max-width: 430px) {
    .map-imgs {
        display: inline-block;
        width: 60%;
    }
}