.front-page-banner {
    display: flex;
    flex: 1;
    align-items: center;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    min-height: 150px;
}

.front-page-banner h1 {
    margin-bottom: 0;
    font-weight: 100;
    
    /* Animation */
    opacity: 0;               /* start invisible */
    transform: translateY(30px);  /* start slightly below */
    animation: popup 1s ease-out forwards; /* 1s animation */
    animation-delay: 0.5s;    /* optional delay */
}

@keyframes popup {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.category_section .page-title {
    padding-top: 0;
}