html, body {
  height: 100%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #c9cfe5;
}

record-player {
  position: relative;
  display: block;
  width: 32rem;
  max-width: 80vw;
  aspect-ratio: 1;
}
record-player > div {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: 100%;
  aspect-ratio: 1;
  transition: rotate 0.1s;
}
record-player #vinyl {
  z-index: 1;
  background-image: url("/asset/vinyl.svg");
}
record-player #surface {
  z-index: 2;
  background-image: url("/asset/dirt.svg");
  mix-blend-mode: soft-light;
  opacity: 0.5;
}
record-player #centre {
  z-index: 3;
  width: 6rem;
  background-image: url("/asset/centre.jpg");
  border-radius: 100%;
  left: calc(50% - 3rem);
  top: calc(50% - 3rem);
}
record-player #bubbles > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 100%;
  scale: 2;
  opacity: 0.25;
}

#controls {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: center;
  margin: 2rem;
}
@media (max-width: 64rem) {
  #controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
#controls button {
  padding: 1rem;
  width: 12rem;
}

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