We advise you to take this in the morning with food. If you find that taking in the morning doesn’t work for you or you feel too relaxed then take it in the afternoon or evening. Play around to find what works for you. It has no stimulants so it can be taken any time of the day.
/* 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;
}
}