div.awards
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

div.awards > h1
{
    font-size: var(--middleFontSize);
    text-align: center;
}

div.awards > div
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

div.awards > div > img
{
    width: 12vw;
    max-width: 250px;
}


@media only screen and (max-width: 500px)
{
    div.awards
    {
        gap: 2rem;
    }

    div.awards > div > img
    {
        width: 30vw;
    }
}
