/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

.image-container {
  position: relative;
  display: inline-block;
}
.overlay-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  pointer-events: none; /* in modo che i clic passino attraverso le sovrapposizioni */
}
/* Posizione e colori delle sovrapposizioni circolari */
#circle1 {
  left: 400px;
  top: 555px;
  width: 76px;
  height: 76px;
  background-color: red;
  transform: translate(-50%, -50%);
}
#circle2 {
  left: 330px;
  top: 200px;
  width: 70px;
  height: 70px;
  background-color: green;
  transform: translate(-50%, -50%);
}
#circle3 {
  left: 550px;
  top: 553px;
  width: 68px;
  height: 68px;
  background-color: blue;
  transform: translate(-50%, -50%);
}
