
/*END HEADER  */
/* CONTAINER */
.container {
    width: 100%;
    height: 420px;
    padding: 0;
    margin: 0;
    max-width: 100%;
    position: fixed;
    bottom: 70px;
    min-height: 120px !important;
    box-shadow: inset 0px 0 22px #000;
}
.piano {
  width: 100%;
  height: 100%;
  display: flex;
  cursor: default;
}

.keys {
  width: 10%;
  height: 100%;
  position: relative;
}

.key {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  transition: transform 80ms ease;
  padding: 1rem;
  cursor:pointer;
}

.white span {
  color: rgba(0, 0, 0, 0.7);
}

.black span {
  color: rgba(255, 255, 255, 0.6);
}


.white {
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  position: relative;
    transition: all 0.2s ease;
}

.black {
    transition: all 0.2s ease;
  position: absolute;
  width: 70%;
  height: 50%;
  background-color: #000;
  right: -35%;
  top: 0;
  z-index: 2;
  box-shadow: 1px 0 #777, 0 2px 0 #777, 0 3px 0 #666, 0 4px 0 #555, 0 5px 0 #444,
    0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2),
    0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2),
    0 20px 20px rgba(0, 0, 0, 0.15);
}



.white:active,
.black:active,
.playing {
  z-index: 1;
  background: #337688;
    box-shadow: -1px 0 15px rgba(0, 0, 0, 0.7) inset;
}
.white:active span,
.black:active span,
.playing span{
  color:#FFF;
}

.note {
  font-size: 5rem;
  opacity: 0;
}
