@import url("https://fonts.googleapis.com/css2?family=Rubik+Doodle+Shadow&display=swap");
:root {
  font-family: "Rubik Doodle Shadow";
  color: white;
}

html {
  overflow: hidden;
}
html body {
  background-image: url("../bg.png");
  background-size: cover;
  height: calc(100vh - 20px);
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
  background-position: center;
}
html body main {
  background: rgba(0, 0, 0, 0.3019607843);
  margin: 10px;
  height: 100%;
}
html body main .box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
html body main .box .title {
  font-size: xxx-large;
  text-align: center;
}
html body main .box .action {
  display: flex;
  flex-direction: column;
  position: relative;
}
html body main .box .action #play {
  font-size: xxx-large;
  margin: 10px;
  border-radius: 50%;
  border: white solid 5px;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  transition: all 0.5s ease;
  position: relative;
  z-index: 100;
}
html body main .box .action #play:hover {
  transform: scale(1.1);
}
html body main .box .action #play i {
  font-size: 100px;
}
html body main .box .action #play.playing {
  animation: spin 5s linear 0s infinite;
}
html body main .box .action #play_dummy {
  position: absolute;
  left: 0;
  top: 0;
  margin: 10px;
  border-radius: 50%;
  border: white solid 5px;
  width: 150px;
  height: 150px;
  animation: pulse-border 1500ms ease-out infinite;
  display: flex;
}
html body main .box .action.loading #play {
  margin: 15px;
  background-color: rgba(0, 0, 0, 0.44);
  width: 140px;
  height: 140px;
  cursor: progress;
  background-image: url(../tdrinmc-logo.png);
  background-size: cover;
  background-repeat: no-repeat;
  border: none;
  left: 5px;
  top: 5px;
  opacity: 0.5;
}
html body main .box .action.loading #play i {
  display: none;
}
html body main .box .action.loading #play:hover {
  transform: scale(1);
}
html body main .box .action.loading #play_dummy {
  border-color: rgba(255, 255, 255, 0);
  background: linear-gradient(0deg, rgba(63, 249, 220, 0.1) 33%, rgb(63, 122, 249) 100%);
  animation: spin 0.8s linear 0s infinite;
  background-repeat: no-repeat;
  border: unset;
  padding: 5px;
}
html body main .box .action.standby #play {
  margin: 15px;
  background-color: rgba(0, 0, 0, 0.44);
  width: 140px;
  height: 140px;
  cursor: auto;
  background-image: url(../tdrinmc-logo.png);
  background-size: cover;
  background-repeat: no-repeat;
  border: none;
  left: 5px;
  top: 5px;
}
html body main .box .action.standby #play i {
  display: none;
}
html body main .box .action.standby #play:hover {
  transform: scale(1);
}
html body main .box .action.standby #play_dummy {
  border-color: rgba(255, 255, 255, 0);
  background: linear-gradient(0deg, rgba(137, 249, 63, 0.37) 33%, rgb(63, 249, 109) 100%);
  animation: pulse-border 1500ms ease-out infinite;
  background-repeat: no-repeat;
  border: unset;
  padding: 5px;
}

span {
  position: absolute;
  display: block;
  pointer-Events: none;
  z-index: 10000000;
  font-Size: 16px;
  will-change: transfor;
}

@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}/*# sourceMappingURL=common.css.map */