* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  color: whitesmoke;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

#player {
  /* border: 2px solid red; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

#canvas {
  width: 100%;
  height: 90%;
}

.lyrics {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-size: 4em;
  text-transform: uppercase;
  pointer-events: none;
  color: black;
  mix-blend-mode: hard-light;
  padding-bottom: 4em;
}
