/* Anti-FOUC (Flash of Unstyled Content) Fix */
body {
    opacity: 0;
    transition: opacity 0.2s ease-in;
}

body.loaded {
    opacity: 1;
}
