body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto; /* Changed to auto to accommodate content height */
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
}

.container {
    text-align: center;
    max-width: 800px; /* Optional: Limit the max width of the content */
    margin: 20px auto; /* Center the container with some margin on the top and bottom */
}

.contact-text {
    max-width: 600px;
    padding: 20px;
    margin: auto;
    text-align: center;
}

.logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.playstore-badge {
    margin-top: 20px;
    width: 150px;
}

.footer-links {
    margin-top: 30px;
}

.footer-links a {
    text-decoration: none;
    color: black;
    margin: 0 10px;
}

.login-button-container {
    position: fixed;
    top: 0;
    right: 0;
    padding: 20px;
}

.login-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.login-button:hover {
    background-color: #0056b3;
}

@media screen and (max-width: 768px) {
    .login-button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .logo, .playstore-badge {
        width: 90%;
        max-width: 200px;
    }

    .contact-text, .footer-links a {
        font-size: 14px;
    }

    /* Adjusting the layout for smaller screens */
    body, html {
        height: auto; /* Ensure the body expands with content */
        display: block; /* Stack elements vertically without flex */
    }

    .container {
        padding: 10px; /* Add padding on smaller screens */
    }
}
