
.container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tile {
    background: #b0c4de;
    padding: 40px 20px;
    margin: 15px 0;
    min-height: 300px;
    display: table;
    text-align: center;
    color: inherit;
    width: 100%;
    box-sizing: border-box;
    -webkit-transition: background-color, 0.25s, ease-in-out;
    transition: background-color, 0.25s, ease-in-out;
    cursor: pointer;
}

.tile:hover {
    background-color: #9fb8d9;
}

.tile .inner {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
}

.tile .image {
    text-align: center;
    margin-bottom: 20px;
}

.tile img {
    width: 100%;
    max-width: 200px;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    display: inline-block;
    background-color: #f0f0f0;
    border: 2px solid #e0e0e0;
}

.tile h3 {
    padding: 10px 0 5px;
    color: #252525;
    font-size: 2.2rem;
    font-weight: 600;
    margin: 10px 0 5px;
}

@media screen and (max-width: 991px) {
    .tile {
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    body {
        padding-right: 80px;
        padding-left: 80px;
    }
    .tile {
        width: 100%;
        min-height: 200px;
    }
}

@media screen and (max-width: 600px) {
    body {
        padding-right: 40px;
        padding-left: 40px;
    }
}

@media screen and (max-width: 480px) {
    body {
        padding-right: 15px;
        padding-left: 15px;
    }
}
