 /* Marco Hernandez 9/20/23  */
 /* Adapted from https://javascript30.com
JavaScript Drum Kit */



html {
  font-size: 10px;
  background-size: cover;
}

body,html {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

body
  {
    background-color: rgb(42, 42, 42);
    display:flex;
    justify-content: center;
  }

/* I changed the layout and key colors to look more like a drum pad. */
.keys {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
  max-height: 90rem;
  max-width: 90rem;
  align-items: center;

}

/* changed colors to support drumpad look */
.key {

  border-radius: .5rem;
  margin: 1rem;
  font-size: 6rem;
  padding: 1rem .5rem;
  transition: all 0.03s ease;
  width: 20rem;
  height: 20rem;
  text-align: center;
  color: white;
  background-color: #a64242;
  text-shadow: 0 0 .5rem black;
}

/* Color change to support drumpad look */
.playing {
  transform: scale(1.1);
  border-color: #e6e6fa;
  box-shadow: 0 0 1rem #e6e6fa;
}

kbd {
  display: block;
  font-size: 4rem;
}

.sound {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .1rem;
  color: #fff;
}