body {
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
}

/* Default styling for all devices */
img {
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    object-fit: cover;
    display: block;
}

/* Additional styles for mobile devices */
@media (max-width: 768px) {
    img {
        width: 100vw; /* Ensure full width */
        height: 100vh; /* Ensure full height */
        object-fit: cover;
    }
}
