.img-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    align-content: stretch;
    column-gap: 10px;
    justify-content: space-evenly;
    margin-top: 40px;
}
.img-row > .img-box {
    flex-grow: 1;
    flex: 1 1 0px;
    /* border: 1px solid black; */
    text-align: center;
    padding-top: 20px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    background-color: var(--cLightBackground);
    border: 2px solid var(--cBorder);
    color: #3a4b35;
    margin-bottom: 15px;
    border-radius: 30px;
    max-width: 30%;
    min-width: 300px;
    cursor: pointer;
    
}
.img-row > .img-box:hover {
    background-color: #d9d9d2;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.4);
}
.img-row > .img-box img {
    width: 50%;
    margin-bottom: 30px;
}
.content p {
    margin-bottom: 20px;
}