
.cardholder {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: top;
    flex-wrap: wrap;
    gap: 30px;

    align-items: stretch;
    justify-content: center;
    color: white;

}

.image-text-card {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    min-width: 200px;
    background-color: #7a9a4e;
    min-height: 400px;

    flex-grow: 1;
    flex-basis: 250px;

    border: 1px solid green;
    border-radius: 10px;
}

.image-text-card img {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;

	aspect-ratio: 300 / 202;
	width: 100%;

	object-fit: cover;
}

.image-text-card p {
    padding: 10px 10px 0px 10px;
    text-align: center;
}
