:root{
    --dunkel-: #1b1b20 ;
}

html {
    background: var(--dunkel-);
    font-family: "Noto Serif", serif;
    -webkit-font-smoothing: antialiased;
    text-align: center;
  }
  
  
  header {
    position: relative;
    margin: 0px 0px;
  }
  
  header:after {
    content: "";
    width: 460px;
    height: 15px;
    background: url(images/intro-div.svg) no-repeat center;
    display: inline-block;
    text-align: center;
    background-size: 70%;
  }
  
  h1 {
    color: #dcdcdc;
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 60px 0px 0px 0px;
  }
  
  h2 {
    color: #dcdcdc;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    margin: 0 0 30px 0px;
  }
  
  .Abspielung {
    font-size: 80px;
    color: #eee;
    transition: all 0.07s ease;
    min-height: 120px;
  }
  
  .AlleTasten-Container {
    display: block;
    width: 100%;
    height: 300px;
    max-width: 880px;
    position: relative;
    margin: 0px auto 0 auto;
  }
  
  .key {
    position: relative;
    border: 4px solid  var(--dunkel-);
    border-radius: 0.5rem;
    transition: all 0.07s ease;
    display: block;
    box-sizing: border-box;
    z-index: 2;
  }
  
  .key:not(.sharp) {
    float: left;
    width: 10%;
    height: 100%;
    background: #eee;
  }
  
  .key.sharp {
    position: absolute;
    width: 6%;
    height: 60%;
    background:var(--dunkel-);
    color: #eee;
    top: 0;
    z-index: 3;
  }
  
  .key[data-key="87"] {
    left: 7%;
  }
  
  .key[data-key="69"] {
    left: 17%;
  }
  
  .key[data-key="84"] {
    left: 37%;
  }
  
  .key[data-key="90"] {
    left: 47%;
  }
  
  .key[data-key="85"] {
    left: 57%;
  }
  
  .key[data-key="79"] {
    left: 77%;
  }
  
  .key[data-key="80"] {
    left: 87%;
  }
  
  .playing {
    transform: scale(0.95);
    border-color: #00d0ff;
    box-shadow: 0 0 1rem #00d0ff;
  }
  
  .hints {
    display: block;
    width: 100%;
    opacity: 1;
    position: absolute;
    bottom: 7px;
    transition: opacity 0.3s ease-out;
    font-size: 20px;
  }
  
  .AlleTasten-Container:hover .hints {
    opacity: 1;
  }
  
  .AlleTasten-Container span em {
    color: #ff0000;
    font-size: 14px;
}