:root {
  color-scheme: light dark;
  --primary-color: CanvasText;
  --primary-background: Canvas;
  --highlight-color: light-dark(hotpink, lime);
}

div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 99vh;
  width: 99vw;
  position: absolute;
}

img {
  width: 90%;
  height: 90%;
}

@-webkit-keyframes spin {
    0%   {-webkit-transform: rotate(0deg)}
    100% {-webkit-transform: rotate(360deg)}
}

#top {
  z-index: 3;
}
#middle {
  z-index: 2;
  -webkit-animation: spin 128s infinite linear;
}
#bottom {
  z-index: 1;
}