*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: inherited;
}

html {
  box-sizing: border-box;
  min-height: 100%;
}

body {
  background-color: hsl(0, 0%, 10%);
}

svg {
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  max-width: 500px;
  margin: auto;
}

#stop1 {
  -webkit-animation: stopcolor2 1s linear 0s infinite;
          animation: stopcolor2 1s linear 0s infinite;
}

#stop2 {
  -webkit-animation: stopcolor 1s linear 0.2s infinite;
          animation: stopcolor 1s linear 0.2s infinite;
}

#stop3 {
  -webkit-animation: stopcolor2 1s linear 0.4s infinite;
          animation: stopcolor2 1s linear 0.4s infinite;
}

#stop4 {
  -webkit-animation: stopcolor 1s linear 0.6s infinite;
          animation: stopcolor 1s linear 0.6s infinite;
}

@-webkit-keyframes stopcolor {
  0% { stop-color: blue; }
  100% { stop-color: red; }
}

@keyframes stopcolor {
  0% { stop-color: blue; }
  100% { stop-color: red; }
}

@-webkit-keyframes stopcolor2 {
  0% { stop-color: green; }
  100% { stop-color: red; }
}

@keyframes stopcolor2 {
  0% { stop-color: green; }
  100% { stop-color: red; }
}

#rays > path {
  fill: hsl(240, 100%, 0%);
  opacity: 0.65;
}

#rays > path:nth-child(1) { -webkit-animation: opac 1s linear 0.05s infinite; animation: opac 1s linear 0.05s infinite; }
#rays > path:nth-child(2) { -webkit-animation: opac 1s linear 1.00s infinite; animation: opac 1s linear 1.00s infinite; }
#rays > path:nth-child(3) { -webkit-animation: opac 1s linear 0.15s infinite; animation: opac 1s linear 0.15s infinite; }
#rays > path:nth-child(4) { -webkit-animation: opac 1s linear 0.90s infinite; animation: opac 1s linear 0.90s infinite; }
#rays > path:nth-child(5) { -webkit-animation: opac 1s linear 0.25s infinite; animation: opac 1s linear 0.25s infinite; }
#rays > path:nth-child(6) { -webkit-animation: opac 1s linear 0.80s infinite; animation: opac 1s linear 0.80s infinite; }
#rays > path:nth-child(7) { -webkit-animation: opac 1s linear 0.35s infinite; animation: opac 1s linear 0.35s infinite; }
#rays > path:nth-child(8) { -webkit-animation: opac 1s linear 0.70s infinite; animation: opac 1s linear 0.70s infinite; }
#rays > path:nth-child(9) { -webkit-animation: opac 1s linear 0.45s infinite; animation: opac 1s linear 0.45s infinite; }
#rays > path:nth-child(10) { -webkit-animation: opac 1s linear 0.60s infinite; animation: opac 1s linear 0.60s infinite; }
#rays > path:nth-child(11) { -webkit-animation: opac 1s linear 0.55s infinite; animation: opac 1s linear 0.55s infinite; }
#rays > path:nth-child(12) { -webkit-animation: opac 1s linear 0.50s infinite; animation: opac 1s linear 0.50s infinite; }
#rays > path:nth-child(13) { -webkit-animation: opac 1s linear 0.65s infinite; animation: opac 1s linear 0.65s infinite; }
#rays > path:nth-child(14) { -webkit-animation: opac 1s linear 0.40s infinite; animation: opac 1s linear 0.40s infinite; }
#rays > path:nth-child(15) { -webkit-animation: opac 1s linear 0.75s infinite; animation: opac 1s linear 0.75s infinite; }
#rays > path:nth-child(16) { -webkit-animation: opac 1s linear 0.30s infinite; animation: opac 1s linear 0.30s infinite; }
#rays > path:nth-child(17) { -webkit-animation: opac 1s linear 0.85s infinite; animation: opac 1s linear 0.85s infinite; }
#rays > path:nth-child(18) { -webkit-animation: opac 1s linear 0.20s infinite; animation: opac 1s linear 0.20s infinite; }
#rays > path:nth-child(19) { -webkit-animation: opac 1s linear 0.95s infinite; animation: opac 1s linear 0.95s infinite; }
#rays > path:nth-child(20) { -webkit-animation: opac 1s linear 0.10s infinite; animation: opac 1s linear 0.10s infinite; }

@-webkit-keyframes opac {
  100% { opacity: 0; }
}

@keyframes opac {
  100% { opacity: 0; }
}

.icon {
  fill: hsl(0, 0%, 100%);
  stroke: hsla(0, 0%, 0%, 0.1);
  stroke-width: 0.5;
  opacity: 0.2;
}