body {
    font-size: larger;
    margin: 0;
    background-color: black;
    overflow: hidden;
    display: flex;
    cursor: none;
}

canvas {
    position: fixed;
    z-index: 0;
}

#anzeige {
    font-size: xx-large;
    color: aliceblue;
    margin-left: 1%;
    z-index: 1;
}

#titelscreen,
#hilfeseite,
#editor
 {
    margin: auto;
    text-align: center;
    text-shadow: 0px 0px 10px black;
    color: aliceblue;
    z-index: 2;
}

.breakout {
    letter-spacing: 0.8em ;
    font-size: 3em;
    background-color: rgb(0, 70, 0);
}

#gameover {
    z-index: 2;
    margin: auto;
    font-size: xx-large;
    color: white;
    text-shadow: 0px 0px 10px black;
}


#anzeige3 {
    display: flex;
    position: absolute;
    color: white;
    font-size: 40px;
    margin-top: 50vh;
    margin-right: 50vw;
    padding: 15px;
    background-color: darkgreen;
    z-index: 3;
}
#blackscreen {
    display: grid;
    place-items: center;
    height: 100vh;
    width: 100vw;
    background-color: black;
    color: aliceblue;
    font-size: 4vmin;
    overflow: hidden;
    text-align: center;
}


.LOGOname {
    opacity: 0;
    width: 0vw;
    background-color: rgb(20, 20, 20);
    border: 1vmin;
    border-style: solid;
    border-color: darkred;
    border-radius: 0%;
    padding: 0%;
    text-align: center;
    animation: anim2 2s;
    animation-fill-mode: forwards;
}

.LOGOa {
    color: grey;
    animation: anim3 3s;
}
.LOGOp{
    animation: anim3 3s;
}

.LOGOspiel {
    opacity: 0;
    font-size: 0vmin;
    animation: anim1 1s;
    animation-fill-mode: forwards;
}

@keyframes anim2 {
    from {
        opacity: 0;
        width: 0vw;
        font-size: 0vmin;
        padding: 0%;
    }

    to {
        opacity: 1;
        width: 60vw;
        font-size: 4vmin;
        padding: 5%;
    }
}

@keyframes anim1 {

    from {
        opacity: 0;
        font-size: 0vmin;
    }

    to {
        opacity: 1;
        font-size: 10vmin;
    }

}

@keyframes anim3 {

    from {
        opacity: 0;
        font-size: 0vmin;
    }

    to {
        opacity: 1;
        font-size: 4vmin;
    }

}