.panel {
    position: relative;
    display: inline-block;
}

.panel .panel-text {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 15px;
    color: white;
    font-size: 1.2em;
    font-weight: normal;
}

.panel img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;

}

.panels {
    display: grid;
    grid-gap: 1.4rem;
    margin: 1.4rem;
    margin-top: 0rem;
    /* margin-top: 5rem; */
}

@media (min-width: 600px) {
    .panels {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1400px) {
    .panels {
        grid-template-columns: repeat(4, 1fr);
    }
}