.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s forwards ease-in-out;
}

.fade-out {
    opacity: 1;
    animation: fadeOut 0.6s forwards ease-in-out;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
    }
}
