html {
  background-image: url("./colorful-wavy-background.jpg");
  background-position: center;
  background-size: cover;
  height: 100%;
  background-repeat: no-repeat;
}
html .title {
  text-align: center;
  color: #ecf0f1;
  font-size: 4rem;
  font-family: "Sedan SC", serif;
  font-weight: 400;
  font-style: normal;
  margin: 5rem 0 7rem 0;
}
html .playing {
  outline: 8.5px solid #f1c40f;
  border-color: #f1c40f;
  box-shadow: 0 0 2.5rem #f1c40f;
  transform: scale(1.07);
}
html .keys__alpha, html .keys__num {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
html .keys__alpha__key, html .keys__num__key {
  text-align: center;
  box-shadow: 0 0 0.5rem #dfe6e9;
  width: 5rem;
  padding: 0.1rem 1.5rem;
  border-radius: 0.4rem;
  position: relative;
  transition: all 0.1s ease;
}
html .keys__alpha__key__name, html .keys__num__key__name {
  color: white;
  font-size: 3rem;
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  top: 0.5rem;
}
html .keys__alpha__key__sound, html .keys__num__key__sound {
  color: #f1c40f;
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-style: normal;
}
html .keys__num__key {
  position: relative;
  top: 2rem;
}
@media screen and (max-width: 768px) {
  html {
    background-repeat: repeat;
  }
  html body {
    padding-bottom: 10rem;
  }
  html .title {
    margin: 5rem 0 5rem 0;
  }
}/*# sourceMappingURL=style.css.map */