body {
    opacity: 0;
    animation: fadePage 0.6s ease forwards;
}

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