.fa-angle-down  {
    transition: all;
    transition-duration: .2s;

    margin-top: 2px;
    rotate: 270deg;
}

.jumberton {
    background-color: var(--light-blue);
}

.jumberton a:hover .fa-angle-down  {
    rotate: 360deg;
}

#content {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

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

.card {
    text-align: center;
    width: 500px !important;
    height: 500px !important;
}

.card a {
    transition: padding .3s;
}

.card a:hover {
    padding-left: 17px;
    padding-right: 17px;
}

@media screen and (max-width: 670px) {
    #content {
        padding: 0 10px;
    }

    .card-body {
        height: 500px;
    }
}

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

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

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