body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
    color: #333;
    position: relative; /* Add this to position the logo relative to the body */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

* {
    box-sizing: inherit; /* Ensure all elements inherit box-sizing from body */
}

.logo {
    position: absolute;
    top: 25px; /* Adjust padding as needed */
    left: 25px; /* Adjust padding as needed */
    width: 150px; /* Adjust size as needed */
    height: auto;
    z-index: 1; /* Ensure the logo is above other elements */
}

.container {
    display: flex;
    align-items: center;
    text-align: left;
    flex-wrap: wrap; /* Allow flex items to wrap */
    max-width: 1000px; /* Limit the maximum width of the container */
    width: 100%; /* Ensure the container takes full width */
    padding: 20px; /* Add padding to the container */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.text-section {
    flex: 3; /* Allocate more space to the text section */
    padding-right: 20px; /* Adjust the padding as needed */
    order: 1; /* Ensure text section comes first */
}

.image-section {
    flex: 1; /* Allocate less space to the image section */
    text-align: right;
    order: 2; /* Ensure image section comes second */
    padding-left: 20px; /* Add padding to the left to ensure spacing */
}

h1 {
    font-size: 3em;
    margin: 0;
    color: #dd0100;
}

love {
    font-size: 01.0em;
    font-style: italic;
    color: #000000;
}

help {
    font-size: 1em;
    margin: 0;
    font-style: italic;
    color: #000000;
}

helpcenter {
    font-size: 0.5em;
    margin: 0;
    color: #000000;
}

capt {
    font-size: .8em;
    margin: 0;
    color: #585858;
    text-align:right;

}

p {
    font-size: 1.5em;
    margin: 20px 0;
}

.home-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #dd0100;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.home-button:hover {
    background-color: #ff4f41;
}

footer {
    font-size: 10px;
    color: #000; /* Set the footer text to black */
    background-color: #fff; /* Set the background color to white */
    padding: 10px 20px; /* Add some padding for the bubble effect */
    border-radius: 20px; /* Make the corners rounded for the bubble effect */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); /* Add a subtle shadow for depth */
    display: inline-block; /* Make the footer text wrap inside a bubble */
}

.footer-container {
    text-align: center; /* Center the footer bubble inside this container */
    margin-top: 20px;
    width: 100%; /* Ensure the container takes the full width */
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 20px 10px 10px; /* Add padding to the top and sides */
    }

    .image-section {
        order: 2; /* Ensure image section comes after text section */
        padding: 10px; /* Add padding for better spacing */
        text-align: center; /* Center-align image section */
    }

    .text-section {
        order: 1; /* Ensure text section comes first */
        padding: 10px; /* Add padding for better spacing */
        text-align: left; /* Keep text left-aligned */
    }

    .logo {
        display: none; /* Hide logo on smaller screens */
    }

    h1 {
        font-size: 2em; /* Reduce font size for smaller screens */
    }

    p {
        font-size: 1.2em; /* Optionally adjust paragraph font size for smaller screens */
    }
}
