@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.page {
    animation: fadeIn 0.2s ease-out;
}
