@keyframes open_circle1 {
  0% {
    width: 0px;
    height: 0px;
  }
  20% {
    width: 90px;
    height: 90px;
  }
  100% {
    width: 90px;
    height: 90px;
  }
}
@keyframes open_circle2 {
  0% {
    width: 0px;
    height: 0px;
  }
  50% {
    width: 60px;
    height: 60px;
  }
  100% {
    width: 60px;
    height: 60px;
  }
}
@keyframes open_circle3 {
  0% {
    width: 0px;
    height: 0px;
  }
  98% {
    width: 40px;
    height: 40px;
  }
  100% {
    width: 40px;
    height: 40px;
  }
}
* {
  margin: 0;
  padding: 0;
}

main {
  width: 100vw;
  height: 100vh;
  display: grid;
  place-content: center;
  background: #E56262;

}

.canvas {
  height: 100px;
  width: 100px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.canvas div{
  background: #fff;
  box-shadow: 2px 2px 3px 2px 

}
.canvas .circle {
  border-radius: 50%;
  box-shadow: 2px 0px 8px 0px rgba(0, 0, 0, 0.98);
  -webkit-box-shadow: 2px 0px 8px 0px rgba(0, 0, 0, 0.98);
  -moz-box-shadow: 2px 0px 8px 0px rgba(0, 0, 0, 0.98);
  border: gray solid 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  animation-name: open_circle1;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  animation-direction: alternate;
}
.canvas .circle1 {
  border-radius: 50%;
  box-shadow: 2px 0px 8px 0px rgba(0, 0, 0, 0.98);
  -webkit-box-shadow: 2px 0px 8px 0px rgba(0, 0, 0, 0.98);
  -moz-box-shadow: 2px 0px 8px 0px rgba(0, 0, 0, 0.98);
  border: gray solid 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  animation-name: open_circle2;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  animation-direction: alternate;
}
.canvas .circle2 {
  border-radius: 50%;
  box-shadow: 2px 0px 8px 0px rgba(0, 0, 0, 0.98);
  -webkit-box-shadow: 2px 0px 8px 0px rgba(0, 0, 0, 0.98);
  -moz-box-shadow: 2px 0px 8px 0px rgba(0, 0, 0, 0.98);
  border: gray solid 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  animation-name: open_circle3;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  animation-direction: alternate;
}

/*# sourceMappingURL=4_day.css.map */
