/* use # to target id */
#box {
  width: 200px;
  height: 200px;
  background: rgb(214, 167, 212);
}
/* use . to target class */
.circle {
  width: 250px;
  height: 250px;
  background: rgb(229, 155, 180);
  border-radius: 50%;
}

.a {
  margin-left: 20%;
}
.b {
  margin-left: 40%;
}
.c {
  margin-left: 60%;
}
