Cypressa Vanilla Halva is a rich, sweet treat made from ground sesame seeds and a hint of vanilla. Its crumbly, melt-in-the-mouth texture makes it a delightful dessert or snack, perfect for enjoying on its own or paired with coffee or tea. A classic Mediterranean indulgence.
/* Mark the container as a query container */
.image-container {
container-type: inline-size;
}
/* When the container’s width is at least 500px, apply a max-width style to the image */
@container (min-width: 500px) {
.image-container img {
max-width: 80%;
height: auto;
}
}