.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    text-decoration: none;
    color: inherit;
    background-color: #fff;
    max-height: 450px;
    max-width: 250px;
    margin: 1em;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    width: 100%;
}

.card img {
    width: 100%;
}