  @keyframes shaking {
    0% {
        transform: rotate(0);
    }
    25% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
    75% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0);
    }
}

.featured {
    border: 1px solid rgb(255, 205, 84) !important;
}

#latest-hero, #latest {
    color: #666666;
    line-height: 1.3em;
}

#latest .card {
    border-bottom-right-radius: 25px;
}

#latest .card-img-top {
    border: 1px solid #eeeeee;
    object-fit: cover;
}

#latest .card-title {
    font-size: 21px;
    font-weight: bold;
}

.navbar-brand > img {
    max-height: 60px;
}

i.border-circle {
    border-radius: 50%;
    border: 5px solid #666666;
    width: 2em;
    height: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    transition: ease-in-out 0.2s all;
}

a:hover i.border-circle {
   filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.15));
   animation: shaking 0.5s infinite;
    background-color: #ffffff;
}
