.fade {
    animation: fadein 1s ease-in-out;
}

@keyframes fadein {
    from {
        opacity: 0.25;
    }
    to {
        opacity: 1;
    }
}