<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.image-container {
  position: relative;
  width: 100%;
}

.image-container .bubble {
  position: absolute;
  max-width: 30%;
}

.image-container .star {
  position: absolute;
  max-width: 30%;
}

/* Adjust the top and left requirements based on your requirements or preferences */
.image-container .bubble:nth-child(1) {
  top: 1%;
  left: 20%;
}

.image-container .bubble:nth-child(2) {
  top: 45%;
  left: 95%;
}

.image-container .bubble:nth-child(3) {
  top: 95%;
  left: 10%;
}

.image-container .bubble:nth-child(4) {
  top: 80%;
  left: 80%;
}

.image-container .bubble:nth-child(5) {
  top: 5%;
  left: 77%;
}

.image-container .bubble:nth-child(6) {
  top: 80%;
  left: 50%;
}

.image-container .star:nth-child(1) {
  top: 5%;
  left: 5%;
}

.image-container .star:nth-child(2) {
  top: 35%;
  left: 95%;
}

.image-container .star:nth-child(3) {
  top: 45%;
  left: 10%;
}

.image-container .star:nth-child(4) {
  top: 10%;
  left: 80%;
}

/* bubbles &amp; stars disappear when top right bubble touches paragraph. Adjust based on your requirements */

@media (max-width: 1000px) {
    .image-container .bubble{
        display: none;
    }
}

@media (max-width: 1000px) {
    .image-container .star{
        display: none;
    }
}
</pre></body></html>