#content {
    margin: 0 auto;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
}

.title h1, h2 {
    display: inline;
}

.title {
    margin: 10px auto;
    width: 91%;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    flex-basis: 50%;
}

.card {
    width: 28rem;
    height: 30rem;
}

.card-title {
    color: var(--bs-blue);
}

.card-img-top {
    object-fit: cover;
    height: 250px;
}

@media screen and (max-width: 670px) {
    .title h1, .title h2{
        font-size: 20px;
    }

    .cards {
        flex-direction: column;
        width: 100%;
    }

    .card-body p {
        font-size: 16px;
        word-wrap: normal;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .card {
        flex-basis: 33%;
    }

    .card-img-top {
        height: 200px !important;
    }

    .card-body {
        height: 200px;
        font-size: smaller;
    }
}