/* General styling */
body {
    margin: 0;
    font-family: 'Cormorant', sans-serif; /* Apply Google Font */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #DDC199;
}

/* Hide elements by default */
.hidden {
    display: none;
}

/* Mobile screen styling */
.logo-container {
    text-align: center;
}

/* Logo styling for mobile and desktop */
.logo {
    width: 80px; /* Default size for desktop */
    height: auto;
    margin-bottom: 20px;
}

/* Spinner styling */
.spinner {
    animation: spin 1.5s linear infinite; /* Add animation to the spinner SVG */
}

/* Keyframes for spinner rotation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Desktop screen styling */
#desktop-screen {
    text-align: center;
    padding: 40px;
    border-radius: 10px;
}

#desktop-screen h1 {
    color: white; /* Set the heading text to white */
    font-weight: 600; /* Use the bold weight from Google Fonts */
}

#desktop-screen p {
    color: white; /* Set the paragraph text to white */
    font-weight: 400; /* Normal weight from Google Fonts */
    margin-top: 10px;
}

/* Desktop logo styling */
.desktop-logo-container {
    margin-bottom: 20px;
}

.desktop-logo {
    width: 350px; /* Slightly larger logo for desktop */
    height: auto;
}

/* Android message styling */
#android-message {
    display: flex;
    width: 100vw;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 40px;
    color: white;
    border-radius: 10px;
}

#android-message h1,
#android-message p {
    margin: 10px 0;
}

/* Media query for mobile devices */
@media only screen and (max-width: 768px) {
    .logo {
        width: 80%; /* Make the logo 80% of screen width on mobile */
    }
    
    .spinner {
        width: 60px; /* Adjust spinner size for mobile */
        height: 60px;
    }
}
