body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Prevents scrollbars if strips or image exceed viewport */
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    background-color: #f0f0f0; /* Just a background color for visibility */
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-strip {
    position: absolute;
    width: 10vw; /* Adjust width as needed, using viewport width for responsiveness */
    height: 100%;
    z-index: 1; /* Ensure strips are behind the image */
}

.left-strip {
    background-color: #ff6347; /* Tomato */
    left: 20%; /* Adjust position as needed */
    transform: translateX(-50%); /* Center the strip based on its own width */
}

.middle-strip {
    background-color: #4682b4; /* SteelBlue */
    left: 50%;
    transform: translateX(-50%);
}

.right-strip {
    background-color: #3cb371; /* MediumSeaGreen */
    left: 80%; /* Adjust position as needed */
    transform: translateX(-50%);
}

.responsive-image {
    max-width: 80%; /* Adjust max-width as needed */
    max-height: 80%; /* Adjust max-height as needed */
    width: auto;
    height: auto;
    display: block;
    z-index: 2; /* Ensure image is above the strips */
    position: relative; /* Needed for z-index to work correctly against absolute positioned strips */
    object-fit: contain; /* Ensures the entire image is visible within its bounds */
}

/* Optional: Media queries for further responsiveness adjustments if needed */
@media (max-width: 768px) {
    .color-strip {
        width: 15vw; /* Make strips wider on smaller screens */
    }
}

@media (max-width: 480px) {
    .color-strip {
        width: 20vw; /* Even wider on very small screens */
    }
    .responsive-image {
        max-width: 90%;
        max-height: 90%;
    }
}