/* Base styles for all screens */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Use min-height to ensure content is visible on short screens */
}

.container {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

h1 {
    color: #ff6f61;
    font-size: 36px;
}

p {
    color: #333;
    font-size: 18px;
    margin-top: 20px;
}

.logo {
    max-height: 150px; /* Set a maximum height for the logo */
    width: auto;
    margin-top: 20px;
    border-radius: 100%;
}

/* Media query for screens with a maximum width of 768px (typical mobile devices) */
@media (max-width: 768px) {
    .container {
        padding: 10px; /* Reduce container padding for smaller screens */
    }

    h1 {
        font-size: 28px; /* Decrease the heading font size */
    }

    p {
        font-size: 16px; /* Decrease the paragraph font size */
        margin-top: 10px; /* Reduce the top margin for paragraphs */
    }

    .logo {
        max-height: 100px; /* Reduce the maximum height of the logo */
    }
}
