    body {
        overflow: hidden;
        background-color: #111111;
        color: whitesmoke;
        font-size: 4em;
        font-family: Arial, Helvetica, sans-serif;
        display: flex;
        justify-content: center;
        align-content: center;
        height: 100vh;
    }
#undobutton{
    text-shadow: 0 0 4px black;
    margin: auto;
    align-items: baseline;
    justify-content: end;
}
#spielfeld {
    margin:auto;
    max-width: 100%;
    max-height: 100%;

}

    canvas {
        max-width: 100%;
        max-height: 100%;
    }

    #anzeige {
        width: 30%;
        margin: auto;
        padding: 10px;
        align-content: center;
        background-color: #333333;
        text-align: center;
        font-size: 6vmin;
    }

    #zeile1, #zeile3 {
        text-shadow: 0 0 4px black;
    }

    #zeile2, #zeile4 {
        text-shadow: 0 0 4px black;
        color: white;
    }

    #zeile5 {
        text-shadow: 0 0 4px black;
        color: yellow;
    }

    #zeile6 {
        font-size: 4vmin;
    }

    #titelbild {
        align-content: center;
        justify-content: center;
        position: absolute;
        text-align: center;
        width: 100vw;
    }

    h1 {
        font-size: 6vmin;
    }

    h2 {
        font-size: 4vmin;
    }

    h3 {
        font-size: 2vmin;
        color: red;
    }
    #s {
        color: whitesmoke;
    }

    img {
        width: 25vmin;
    }

    #statistik, #hilfe, #touchhilfe {
        position: absolute;
        margin: 5%;
        background-color: #222222;
        border-radius: 10%;
        padding: 1rem;
        text-align: center;
        font-size:  3vmin;
    }

    #stathead {
        color: red;
    }
/*    #hilfe {
        opacity: 0.8;
    }
*/
    .hilfepunkt {
        list-style: none;
    }
    .einblendung{
    animation: fadeIn 10s;
    }
    @keyframes fadeIn {
        0% {
            display: block;
            opacity:0;
          }10% {
            opacity:0.9;
          }90% {
            opacity:0.9;
          }
        100% {
          opacity:0;
          display: none;
        }
      }

      #touchhilfe {
          opacity: 0.9;
      }