/* Reset body and html margins and padding */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff !important;
}

/* Base styling for image */
.responsive-image {
    width: auto;
    height: 100vh;
}

/* Media query adjustments for different screen sizes */

/* For extra-small screens (very small phones, < 400px) */
@media (max-width: 400px) {
    .responsive-image {
        width: 60%;
        height: auto;
    }
}

/* For small screens (phones, 400px - 600px) */
@media (min-width: 400px) and (max-width: 600px) {
    .responsive-image {
        width: 75%;
        height: auto;
    }
}

/* For medium screens (tablets, 600px - 1200px) */
@media (min-width: 600px) and (max-width: 1200px) {
    .responsive-image {
        width: 80%;
        height: auto;
    }
}

/* For large screens (desktops, > 1200px) */
@media (min-width: 1200px) {
    .responsive-image {
        width: 50%;
        height: auto;
    }
}

@media screen and (-webkit-min-device-pixel-ratio:0)
{
#safari { background-color:#ffffff }
}