@media (min-width: 900px) and (max-width: 1200px) {
    /* ========== ALGEMENE ELEMENTEN ========== */
    body {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;

    }

    main {
        width: 100%;
    }

    article {
        width: 100%;
        margin-bottom: 1rem;
    }

    /* ========== HEADER ========== */
    header {
        border-bottom-style: solid;
        border-top-style: solid;
        border-color: gray;
        border-width: thick;
        position: relative;
        width: 100%;
        display: flex;
        justify-content: space-between;
        font-size: 25px;
    }

    header span {
        font-size: 90px;
        border: 2px solid gray;
        border-radius: 8px;
        margin: 0px;
        color: gray;
    }

    /* ========== LOGO ========== */
    .logo {
        height: 120px;
        width: 120px;
        border: 2px solid gray;
        border-radius: 10px;
        margin: 20px;
    }

    /* ========== NAVIGATIE ========== */
    nav {
        text-align: center;
        border-bottom-style: solid;
        border-top-style: solid;
        border-color: gray;
        border-width: thick;
        padding: 10px;
        width: 98%;
        display: flex;
        margin: 0;
        justify-content: space-between;
    }

    nav a {
        border: 1px solid gray;
        border-radius: 10px;
        margin: 8px;
        padding: 10px;
        width: 20%;
        color: black;
    }

    /* ========== FLEX CONTAINER KLASSEN ========== */
    .container {
        display: flex;
        flex-flow: row nowrap;
        flex-wrap: wrap;
        flex-shrink: 1;
    }

    /* ========== GAMES SECTIE ========== */
    .games {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 3rem;
        width: 100%;
    }

    .games article {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 400px;
        flex-shrink: 1;
    }
    img {
        width: 100%;
        max-width: 600px;
        height: auto;
    }

    /* ========== FIGURE / AFBEELDINGEN ========== */
    figure {
        position: relative;
        border: 5px solid gray;
        border-radius: 30px;
        font-size: 30px;
        align-self: center;
        padding: 10px;
    }

    figure span {
        position: absolute;
        top: 5px;
        right: 5px;
    }

    /* ========== FOOTER ========== */
    footer {
        position: sticky;
        bottom: 0;
        background-color: gray;
        text-align: center;
        color: white;
        height: 2rem;
        width: 100%;
    }

}