/* styles.css */
img {
    max-width: 100vw; /* Maximum width is 100% of the viewport width */
    max-height: 100vh; /* Maximum height is 100% of the viewport height */
    width: auto; /* Maintain aspect ratio */
    height: auto; /* Maintain aspect ratio */
}
