* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    padding-top: 100px;
    font-family: sans-serif;
    /* background-color: 242424; */
}

.container {
    padding-left: 50px;
    padding-right: 50px;
    width: 1024px;
    margin: auto;
}

.heading {
    width: 100%;
    text-align: center;
}

.description {
    width: 100%;
    text-align: center;
}

.games {
    display: flex;
    justify-content: space-between;
}

.game {
    width: calc(50% - 5px);
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: black !important;
}

.game-heading {
    /* font-size: 40px; */
    margin-bottom: 10px;
    text-align: center;
}

.game:last-child {
    margin-right: 0;
}

.game-description {
    text-align: center;
}

.link {
    margin-top: 20px;
    text-align: center;
    font-size: 20px;
    color: black !important;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.warning {
    text-align: center;
    font-weight: bold;
    color: red;
}