body {
  margin: 0;
  padding: 0;
  background-image: url("../image/beautifulBeings.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  width: 100%;
  height: 100vh;
  opacity: 85%;
}

.container {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.keys {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40px, 1fr));
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.keys .key {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 8px 15px;
  background-color: rgba(206, 200, 200, 0.3);
  transition: all 0.09s;
  border-radius: 5px;
}
.keys .key h3 {
  margin: 0%;
  font-size: 40px;
  font-weight: 400;
}
.keys .key p {
  text-transform: capitalize;
  color: rgb(122, 170, 129);
  margin: 0%;
  font-size: 15px;
}
.keys .key:hover {
  cursor: pointer;
}
.keys .playing {
  box-shadow: 0 0 10px 3px rgb(231, 213, 79);
  transform: scale(1.1);
}

/*# sourceMappingURL=style.css.map */
