* {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: 'Alata', sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        background: linear-gradient(135deg, #2856a6, #1e2f5e);
        color: #333;
        animation: slowGradient 10s ease infinite;
    }

    @keyframes slowGradient {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .container {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        text-align: center;
        max-width: 350px;
        width: 100%;
    }

    h1 {
        font-size: 1.8em;
        color: #2856a6;
        margin-bottom: 10px;
    }

    p {
        font-size: 1em;
        color: #333;
    }

    .loading-spinner {
        display: none;
        width: 30px;
        height: 30px;
        border: 4px solid #333;
        border-top: 4px solid #1e2f5e;
        border-radius: 50%;
        margin: 20px auto;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

.footer span,
.footer p,
.footer a {
    color: #fff !important;
    /* Force all footer elements to be white */
}
.footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.9em;
    color: #fff;
    /* Set all text in the footer to white */
}

.footer-link {
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
    color: #dcdcdc;
    /* Slightly lighter on hover */
}

.fullscreen-button {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    color: white;
    cursor: pointer;
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.fullscreen-button:hover {
    color: #ccc;
}