.container{
    height: calc(100vh - var(--header-height) - var(--footer-height));
    overflow-y: scroll;

    .images{
        display: flex;
        flex-wrap: wrap;

        div{
            padding: 1rem;
            display: flex;
            align-items: center;

            img{
                width: 12rem;
            }
        }
        div:nth-child(9){
            img{
                width: 7rem;
            }
        }
        div:nth-child(13){
            img{
                width: 9rem;
            }
        }
    }
}