* {
    font-size: 14px;
    font-family: 'Verdana';
}

body, html {
    min-height: 100%;
}

html {
    background-color: #cccccc;
    background-image: linear-gradient(#afb0d5, white);
    background-repeat: no-repeat;
}

header {
    border: solid 1px grey;
    box-shadow: 0px 5px 11px 4px #aaaaaa;
    padding: 4px 6px;
    background-color: #eeeeee;
    margin-bottom: 20px;
}

header a {
    width: 100%;
    font-size: 32px;
}

button {
    cursor: pointer;
    font-size: 20px;
    border-radius: 3px;
    border: solid 1px #6c6868;
    margin-bottom: 4px;
    box-shadow: -3px 1px 11px 2px #b5b5b5;
}

.big-button {
    width: 240px;
    margin-top: 12px;
    padding: 8px 8px;
}

.button-green {
    background-color: #2fcd2f;
    color: white;
}

.button-red {
    color: white;
    background-color: #d75c5c;
}

footer {
    padding: 20px 8px;
}

header a {
    text-decoration: none;
    color: black;
}

header a:visited {
    text-decoration: none;
    color: black;
}

.games-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.game-link-container {
    display: inline-block;
    width: 300px;
}

.game-link {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-link-container a, .game-link-container a:visited {
    text-decoration: none;
    color: black;
}

.game-link img {
    width: 200px;
    height: 200px;
}

.game-link div {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}


@media only screen and (max-width: 1000px) {

    header a {
        font-size: 15px;
    }

    body {
        margin: 2px 2px;
    }
}

@media only screen and (max-width: 600px) {

    .game-link div {
        height: 40px;
    }

    .game-link img {
        width: 140px;
        height: 140px;
    }
}