.feed-container {
    /* font-family: 'Red Hat Display', sans-serif; */
    /* font-weight: 500; */
}

.feed-time {
    font-family: 'Chivo Mono', monospace;
    padding-top: 1.5px;
}

.sidebar i {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    width: 40px;
}

.date-back, .date-forward {
    font-family: 'Chivo Mono', monospace;
}

.date-text {
    font-family: 'Red Hat Display', sans-serif;
}

/* Pulsating animation for generating text */
@keyframes pulsate {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
    }
}

.pulsate {
    animation: pulsate 1s ease-in-out infinite;
}

.dark .fa-sun { display: block !important; }
.fa-sun { display: none !important; }