html {
  font-size: 10px;
  background: url('./background.jpg') bottom center;
  background-size: cover;
}

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

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

.key {
  flex: 1;
  border: .4rem solid black;
  border-radius: .5rem;
  margin: 1rem;
  font-size: 1.5rem;
  padding: 1rem .5rem;
  transition: all .5s ease;
  width: 10rem;
  text-align: center;
  color: white;
  background: rgba(0,0,0,0.4);
  text-shadow: 0 0 .5rem black;
}

.playing {
  transform: scale(1.1);
  border-color: rgb(70, 84, 180);
  box-shadow: 0 0 1rem #595461;
  background-color: rgb(70, 84, 180);
}

.sound {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .1rem;
  color: #ffc600;
}

kbd {
  display: block;
  font-size: 4rem;
  font-family: 'Bungee', sans-serif;
}

h1 {
  text-align: center;
  color: white;
  font-size: 2.5rem;
  margin-top: 80px;
  text-shadow: 0 0 .9rem black;
  font-family: sans-serif;
}