html {
    background-image: url("./background.jpg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

body,html {
    margin: 0;
    padding: 0;
    font-family:'Roboto Mono', monospace;
  }

  h1 {
    color: #F7EBE8; 
    text-align: center;
  }

.key {
      color: #F7EBE8;
      background-color: #1E1E24;
      border: 2px solid #444140;
      border-radius: 20%;
      margin: 5px;
      width: 70px;
      height: 50px;
      font-size: 15px;
      text-align: center;
      padding: 20px;
      display: inline-block;
      transition: all .2s ease-in-out;
  }

#keys1 {
      margin: 80px 80px 30px;
}

#keys2 {
    margin: 30px 65px 30px;
}

#keys3 {
    margin: 30px 130px 30px;
}

.playing {
    transform: scale(1.1);
    border-color: #ffc600;
    box-shadow: 0 0 1rem #ffc600;
    text-transform: uppercase;
}

kbd {
    font-size: 25px;
    display: block;
}

#clockWrapper {
    color: #ffc600;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

