body {
    background: #f4f4f4;
    color: #222;
}

#loader {
    position: fixed;
    width: 100%;
    height: 100%;
}

@media (prefers-color-scheme: dark) {
    body {
        background: #424242;
        color: #eee;
    }
}

#loader::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    height: 64px;
    margin: -32px 0 0 -32px;
    background-image: url('favicon.png');
    background-size: cover;
    transform-origin: center top;
    animation: virar-pagina 3s ease-in-out infinite;
}

#title {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 640px;
    margin: 32px 0 0 -320px;
    text-align: center !important;
}

#title h2 {
    font-family: 'Offside', cursive !important;
    font-size: 28px !important;
    font-weight: bold !important;
    color: #00B247 !important;
}

#title #status {
    font-family: 'Ubuntu', sans-serif !important;
    font-size: 14px !important;
    color: gray !important;

}

@keyframes virar-pagina {
    0% {
        transform: perspective(800px) rotateX(-45deg);
    }
    50% {
        transform: perspective(800px) rotateX(45deg);
    }
    100% {
        transform: perspective(800px) rotateX(-45deg);
    }
}