Spaces:
Sleeping
Sleeping
File size: 422 Bytes
7d51e81 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | /* IMAGE CONTAINER (centered and responsive) */
.image-container {
width: 100%;
display: flex;
justify-content: center;
margin-bottom: 20px;
}
.responsive-image {
width: 100%;
/* max-width: 800px; */
border-radius: 8px; /* small radius */
object-fit: cover; /* maintain aspect */
}
/* Mobile / small screens */
@media (max-width: 600px) {
.responsive-image {
width: 100%;
height: auto;
}
}
|