:root {
  --tp-base-background-color: hsla(230, 7%, 17%, 1.00);
  --tp-base-shadow-color: hsla(0, 0%, 0%, 0.20);
  --tp-button-background-color: hsla(230, 7%, 70%, 1.00);
  --tp-button-background-color-active: hsla(230, 7%, 85%, 1.00);
  --tp-button-background-color-focus: hsla(230, 7%, 80%, 1.00);
  --tp-button-background-color-hover: hsla(230, 7%, 75%, 1.00);
  --tp-button-foreground-color: hsla(230, 7%, 17%, 1.00);
  --tp-container-background-color: hsla(230, 7%, 75%, 0.10);
  --tp-container-background-color-active: hsla(230, 7%, 75%, 0.25);
  --tp-container-background-color-focus: hsla(230, 7%, 75%, 0.20);
  --tp-container-background-color-hover: hsla(230, 7%, 75%, 0.15);
  --tp-container-foreground-color: hsla(230, 7%, 75%, 1.00);
  --tp-groove-foreground-color: hsla(230, 7%, 75%, 0.10);
  --tp-input-background-color: hsla(230, 7%, 75%, 0.10);
  --tp-input-background-color-active: hsla(230, 7%, 75%, 0.25);
  --tp-input-background-color-focus: hsla(230, 7%, 75%, 0.20);
  --tp-input-background-color-hover: hsla(230, 7%, 75%, 0.15);
  --tp-input-foreground-color: hsla(230, 7%, 75%, 1.00);
  --tp-label-foreground-color: hsla(230, 7%, 75%, 0.70);
  --tp-monitor-background-color: hsla(230, 7%, 0%, 0.20);
  --tp-monitor-foreground-color: hsla(230, 7%, 75%, 0.70);
}

body {
  margin: 0;
  color: #002225;
  font-family: "Arial", sans-serif;
  background: #bbbbdd;
}

.player {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 1rem;
  margin: 2rem;
  width: 20rem;
  font-size: 0.9rem;
}
.player .label {
  pointer-events: none;
  font-weight: 600;
}
.player .info {
  font-weight: 300;
  margin-bottom: 0.3rem;
}

.instructions {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.instructions .content {
  max-width: 16rem;
  text-align: center;
  background: #fff;
  padding: 2rem 4rem;
  border-radius: 2rem;
}
.instructions .content p.caption {
  font-size: 0.8rem;
  background: #eeefff;
  padding: 0.5rem;
  border-radius: 2rem;
}
.instructions .content p.description {
  line-height: 1.5rem;
}
.instructions .content button {
  pointer-events: all;
  cursor: pointer;
  width: 100%;
  padding: 1rem 4rem;
  border-radius: 2rem;
  border: none;
  background-color: #002225;
  color: #fff;
}
.instructions .content button.disabled {
  pointer-events: none;
}

.sound-mute {
  width: 2.5rem;
  height: 2rem;
  pointer-events: all;
  cursor: pointer;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
.sound-mute .bar {
  height: 1%;
  width: 20%;
  background-color: #002225;
}

.loader {
  position: fixed;
  width: 100vw;
  background: #ff0000;
}

canvas {
  z-index: -1;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
}

.footer {
  right: 2rem;
  bottom: 2rem;
  position: absolute;
}
.footer img {
  width: 2.5rem;
  transition: opacity 0.5s;
}
.footer img:hover {
  opacity: 0.5;
}