#page
{
    width: 1300px;

    margin: auto;
    margin-top: 70px;
    margin-bottom: 20px;
}

h1
{
    font-family: titleFont;
    font-size: 42px;
}

#game-list
{
    display: grid;
    align-items: end;

    grid-template-columns: 25% 25% 25% 25%;
}

.game
{
    margin: 8px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    cursor: pointer;

    color: var(--black-color);
    text-decoration: none;
}

.game-bottom
{
    display: flex;
    height: 32px;
    margin-top: 8px;
}

.date-p
{
    display: flex;
    justify-content: center;
    align-items: center;

    width: 120px;

    margin-right: 8px;
    padding: 4px;

    background-color: var(--black-color);
    color: var(--white-color-1);
}

.image
{
    width: auto;
    height: 175px;
    object-fit: cover;
}

.icons-list
{
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.icons-list img
{
    height: 100%;
    margin-left: 8px;
}

#last-realease
{
    display: flex;
    flex-direction: column;

    color: var(--black-color);
    text-decoration: none;
}

#last-realease h3
{
    margin-top: 8px;
    font-size: 24px;
}

#last-realease div .icons-list
{
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;

    margin: 0;
}

#last-realease div .icons-list img
{
    height: 100%;
}

#realease-date-top
{
    display: flex;
    flex-direction: row;

    height: 32px;
    margin-top: 8px;
}

#header-game-list
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    margin-top: 32px;
    padding-top: 8px;

    border-top: 4px solid var(--black-color);
}

#header-game-list h2
{
    font-size: 42px;
    
    font-family: titleFont;
}

#header-game-list select
{
    width: 250px;
    height: 32px;

    margin-left: 16px;

    border: 0;
    border-bottom: 2px solid var(--blue-2);

    font-family: titleFont;
    font-size: 18px;
    color: var(--blue-2);

    cursor: pointer;
    outline: 0;
}

#page-number
{
    margin-top: 16px;

    display: flex;
    justify-content: center;
}

#page-number a
{
    min-width: 26px;
    height: 26px;

    padding: 4px;
    margin-left: 2px;
    margin-right: 2px;

    color: var(--white-color-1);
    background-color: var(--blue-2);

    text-align: center;
    font-size: 20px;
    text-decoration: none;
}

#page-number a:hover
{
    background-color: var(--blue-1);
}

#page-number p
{
    margin-left: 8px;
    margin-right: 8px;
}