cssCopy code/* styles.css */ 
body { 
    margin: 0; 
    padding: 0; 
    background-color: #f0f0f0; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
} 
 
.image-container { 
    text-align: center; 
} 
 
img { 
    max-width: 100%; 
    height: auto; 
} 
