Coenzyme Q10 (CoQ10), also known as Ubiquinone, is found in every living cells and is critical for the release of energy from food. In some people, this function is impaired making them feel weak and tired, irrespective of their diet. It has powerful antioxident properties essential for good health.
/* 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;
}
}