.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.delay-0 {
    animation-delay: 1s;
}

.delay-100 {
    animation-delay: 1.5s;
    /* Adjust the delay as needed */
}

.delay-200 {
    animation-delay: 2s;
    /* Adjust the delay as needed */
}

hr.hr-white {
    border-top: 1px solid white;
}
hr.hr-black {
    border-top: 1px solid black;
}