Sauerkraut literally means sour cabbage in German. Naturally fermented, without added vinegar- just salt and time as well as juniper berries for a delicious and authentic taste. Sauerkraut is made by a pickling process called lacto-fermentation that is similar to how traditional gherkins and kimchi are made.
/* 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;
}
}