No way they got my fav flavor, The
.image-container {
width: 100%;
max-width: 600px;
margin: 20px auto;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
font-family: sans-serif;
}
.image-container img {
width: 100%;
display: block;
transition: transform 0.3s ease;
}
/* Hover effect to make it interactive */
.image-container:hover img {
transform: scale(1.05);
}
.caption {
padding: 15px;
background: #fff;
text-align: center;
font-weight: bold;
color: #333;
}