#container {
    display: flex;
    column-gap: 20px;
    row-gap: 20px;
    margin-top: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;

    
}
.box {
    min-width: 350px;
    width: 32%;
    position: relative;

}
.box img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);

    cursor: pointer;
}
.box img:hover {
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--cLink);
    box-sizing: border-box;
}

/* Style the text to position it over the image */
.box h2 {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translate(-50%, 0);
    color: var(--cLightBackground);
    padding: 15px 10px;
    margin: 0;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    font-size: 1.3em;
    font-weight: normal;

    background-color: rgba(0, 0, 0, 0.45);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}


@media only screen and (max-width: 1100px) {
    .box {
        width: 90%;
    }
}
@media only screen and (min-width: 1100px) and (max-width: 1400px) {
    .box {
        width: 45%;
    }
}