 .shape {
     position: absolute;
 }

 @keyframes pulsate {
     0% {
         transform: scale(1);
     }
     50%{
        transform: scale(1.2);
     }
     100%{
        transform: scale(1);
     }
 }

 .circle {
    /* будем писать на JS */
    /* animation: pulsate 3s infinite; */
     height: 93px;
     width: 93px;
     background-color: #ffeecf;
     border-radius: 100%;
 }

 .squiggle {
     width: 303px;
     height: 65px;
     background-image: url(../assets/images/squiggle.svg);
     /* this will contain the background image inside the edges of our box */
     background-size: contain;
     background-repeat: no-repeat;
     background-position: center;
 }

 /* you can select an individual element from a sries using nth-of-type */
 .circle:nth-of-type(1) {
     left: 5%;
     top: 20%;
 }

 .circle:nth-of-type(2) {
     left: 20%;
     top: 5%;
 }

 .circle:nth-of-type(3) {
     left: 20%;
     top: 50%;
 }

 .circle:nth-of-type(4) {
     left: 4%;
     top: 80%;
 }

 .circle:nth-of-type(5) {
     left: 70%;
     top: 5%;
 }

 .circle:nth-of-type(6) {
     left: 75%;
     top: 55%;
 }

 .circle:nth-of-type(7) {
     left: 85%;
     top: 30%;
 }

 .circle:nth-of-type(8) {
     left: 80%;
     top: 80%;
 }

 .squiggle:nth-of-type(1) {
     left: 5%;
     top: 2%;
 }

 .squiggle:nth-of-type(2) {
     left: 8%;
     top: 25%;
 }

 .squiggle:nth-of-type(3) {
     left: 3%;
     top: 60%;
 }

 .squiggle:nth-of-type(4) {
     left: 10%;
     top: 90%;
 }

 .squiggle:nth-of-type(5) {
     right: 10%;
     top: 7%;
 }

 .squiggle:nth-of-type(6) {
     right: 2%;
     top: 35%;
 }

 .squiggle:nth-of-type(7) {
     right: 9%;
     top: 60%;
 }

 .squiggle:nth-of-type(8) {
     right: 0%;
     bottom: 5%;
 }