@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap'); body {
    text-align: center;
}

#ueberschrift {
    font-family: 'Patrick Hand';
    color: rgb(128, 64, 0);
    font-size: 4em;
    font-weight: bold;
    text-align: center;
}

#logo {
    width: 250px;
    height: 200px;
    position: absolute;
    top: 0.5em;
    right: 0.5em;
}


td {
    width: 120px;
    height: 120px;
    font-size: 1.5em;
    background-color: #9DBA26;
}

#table {
    margin-left: auto;
    margin-right: auto;
    margin-top: 3em;
    animation: welle 1s;
}

@keyframes welle {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }

    70% {
        transform: scale(1.25);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#table:hover {
    cursor: pointer;
}

#aufgabe {
    margin-top: 1em;
    font-size: 2em;
}

#level {
    font-size: 3em;
    font-family: 'Patrick Hand';
    position: absolute;
    top: 2em;
    left: 1.5em;
}

#score {
    font-size: 3em;
    font-family: 'Patrick Hand';
    position: absolute;
    top: 3em;
    left: 1.5em;
}

.tiere {
    font-size: 3.5em;
    margin-left: auto;
    margin-right: auto;
}

#aufgabe {
    font-size: 3em;
    font-family: 'Patrick Hand';
    margin: 1rem auto 1rem auto;
}

#ladebalken {
    height: 20px;
    /*Wichtig, weil wird im js pro Sekunde immer um 10% kleiner*/
    width: 100%;
    background-color: rgb(128,64,0);
    position: relative;
}

#ladebalkencontainer {
    height: 20px;
    /*Länge, sodass nicht volle Länge der Seite, sondern nur neben Spielfeld*/
    width: 35%;
    position: absolute;
    left: 1.5em;
    top: 37em;
}

#restartbutton {
    font-family: 'Patrick Hand';
    font-size: 2em;
    padding: 1rem;
    background: rgb(128,64,0);
    border-radius: 0.5em;
    color: white;
    width: 10em;
    position: absolute;
    right: 3em;
    top: 14.5em;
}
