html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: #181818;
    color: #ddd;
    font-family: Arial, sans-serif;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
}

.aboutPage {
    width: calc(100% - 30px);
    max-width: 900px;
    margin: 30px auto 60px;
    padding: 30px;

    box-sizing: border-box;

    background: #202020;
    color: #ddd;

    border: 1px solid #444;
    border-radius: 10px;

    line-height: 1.7;
}

.aboutPage h1 {
    margin-top: 20px;
    margin-bottom: 18px;

    color: #fff;
    font-size: 30px;
    line-height: 1.3;
}

.aboutPage h2 {
    margin-top: 34px;
    margin-bottom: 10px;

    color: #ffd700;
    font-size: 22px;
}

.aboutPage p {
    margin: 12px 0;

    color: #ddd;
    font-size: 16px;
    line-height: 1.7;
}

.aboutPage strong {
    color: #fff;
}

.backGame {
    display: inline-block;

    color: #ffd700;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}

.backGame:hover {
    text-decoration: underline;
}

.playNow {
    margin: 35px 0;
    text-align: center;
}

.playNow a {
    display: inline-block;

    padding: 14px 24px;

    background: #ffd700;
    color: #111;

    font-weight: bold;
    text-decoration: none;

    border-radius: 8px;
}

.playNow a:hover {
    opacity: 0.85;
}

@media (max-width: 600px) {

    .aboutPage {
        width: calc(100% - 20px);
        margin: 15px auto 40px;
        padding: 18px;
    }

    .aboutPage h1 {
        font-size: 24px;
    }

    .aboutPage h2 {
        font-size: 20px;
    }

    .aboutPage p {
        font-size: 15px;
    }
}
.gamePreview {
    display: block;
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 20px auto 25px;
    border-radius: 10px;
}