@keyframes opacity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-opacity {
    animation: opacity 0.3s ease-in-out forwards;
}
