.cards-wrapper {
    width: 70vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cards {
    margin: 5vh 0 5vh 0;
}

.card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
    font-family: sans-serif;
    color: hsl(207.04, 31%, 44.9%);
    margin-bottom: 5vh;
    break-inside: avoid;
}

.card.card-top {
    margin-top: 0;
}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top img {
    width: 100%;
    display: block;
}

.card-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.card-body h3 {
    font-size: 1.25rem;
    margin: 0;
}