html {
  font-size: 10px;
  background: url(https://images.unsplash.com/photo-1524230659092-07f99a75c013?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80)
    bottom center;
  background-size: cover;
}

body,html {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.keys {
  display: flex;
  flex: 1;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
}

.key {
  border: .4rem solid black;
  border-radius: 50%;
  margin: 1rem;
  font-size: 1.5rem;
  padding: 1rem .5rem;
  transition: all .07s ease;
  width: 10rem;
  text-align: center;
  color: #008b8b;
  background: rgba(0,0,0,0.6);
  text-shadow: 0 0 .5rem black;
}

.playing {
  transform: scale(1.1);
  border-color: #008b8b;
  box-shadow: 0 0 2rem #008080;
}

kbd {
  display: block;
  font-size: 4rem;
}

.sound {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: .1rem;
  color: black;
}
