/* Splash page styles moved from inline block to satisfy CSP. */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

#main-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFCC00;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

#main-screen h1 {
    color: #D40511;
    font-size: 2rem;
    margin: 0;
}

.loader {
    margin-top: 15px;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #D40511;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 600px) {
    #main-screen h1 {
        font-size: 1.5rem;
    }

    #main-screen img {
        width: 120px;
    }
}
