
.kreis {
    position: relative;
    width: 150px;
    height: 150px;
    background: linear-gradient(70deg, blue, pink);
    color: white;
    text-shadow: 1px 2px black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    position: absolute;
    width: 110px;
    height: 110px;
    background: url(./logo.jpg);
    background-size: cover;
    border-radius: 50%;
    filter:blur(1) brightness(1,2);
    box-shadow: 1 px 2px white;
    animation: vibration 6s linear infinite;
}

txt {
    padding: 0;
    margin: 0;
    background-color: 0;
    color: white;
}

.text {
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    animation: drehen 11s linear infinite;
}

.text span {
    position: absolute;
    left: 50%;
    font-size: 14px;
    transform-origin: 0 75px;
}

@keyframes drehen {
    from{
        transform: rotate(359deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@keyframes vibration {
    from {
        transform: translate(1px);
    }
    50% {
        transform: translate(-3px);
    }
    to {
        transform: translate(1px);
    }
}
