@import url(https://fonts.googleapis.com/css?family=Open+Sans:700,300);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* .frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  margin-top: -200px;
  margin-left: -200px;
  border-radius: 2px;
  box-shadow: 4px 8px 16px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #fff;
  color: #333;
  font-family: "Open Sans", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* .frame .center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #9B59B6;
  display: flex;
  justify-content: center;
  align-items: center;
}
* .frame .center .ball {
  width: 13%;
  height: 13%;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  animation: move 1s ease-in-out alternate infinite;
  transform: translateX(-8.75rem);
}
* .frame .center .shadow-1, * .frame .center .shadow-2, * .frame .center .shadow-3, * .frame .center .shadow-4 {
  width: 13%;
  height: 13%;
  border-radius: 50%;
  filter: blur(2px);
  position: absolute;
  transform: translateX(-8.75rem);
}
* .frame .center .shadow-1 {
  background: rgba(255, 255, 255, 0.65);
  animation: move 1s ease-in-out 0.02s alternate infinite;
}
* .frame .center .shadow-2 {
  background: rgba(255, 255, 255, 0.5);
  animation: move 1s ease-in-out 0.04s alternate infinite;
}
* .frame .center .shadow-3 {
  background: rgba(255, 255, 255, 0.35);
  animation: move 1s ease-in-out 0.06s alternate infinite;
}
* .frame .center .shadow-4 {
  background: rgba(255, 255, 255, 0.2);
  animation: move 1s ease-in-out 0.08s alternate infinite;
}
@keyframes move {
  0% {
    transform: translateX(-8.75rem);
  }
  100% {
    transform: translateX(8.75rem);
  }
}

/*# sourceMappingURL=index.css.map */
