.cols {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
    margin-bottom: 20px;
}

.cols > div {
    min-width: 300px;
    max-width: 500px;
    margin: 30px;
}

.cols > div > * {
    margin-left: 30px;
}

.cols >div.wider {
    min-width: 500px;
    max-width: 8000px;

}

.cols > div > img {
    width: 100%;
    height: 450px;
    object-fit: scale-down;
}

.closer {
    justify-content: space-evenly;
}

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