#loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.spinner-logo {
    width: 700px;
    /* default for larger screens */
    margin-bottom: 20px;
    animation: fadeInOut 4s ease-in-out infinite;
}

/* Media query for tablet screens */
@media (max-width: 768px) {
    .spinner-logo {
        width: 500px;
        /* adjust size for tablet screens */
    }
}

/* Media query for mobile screens */
@media (max-width: 480px) {
    .spinner-logo {
        width: 150px;
        /* adjust size for mobile screens */
    }
}


@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

:root {
    --browser-context: 16px;
    /* Initial font size */
}

html {
    font-size: var(--browser-context);
}

body {
    font-size: 1rem;
    /* Will be equal to --browser-context */
}

h1 {
    font-size: 2rem;
    /* 2 times the base size */
}

p {
    font-size: 1rem;
    /* Same as the base size */
}


html.filtered {
    color: #fff;
    filter: invert(.2) sepia(100%) saturate(0%) brightness(100%) contrast(100%);
}
