.kolo
{
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logowkole
{
    position: absolute;
    width: 150px;
    height: 150px;
    background: red;
    border-radius: 50%;
}
.textwkole
{
    position: absolute;
    width: 100px;
    height: 100px;
    animation: rotateText 10s linear infinite;
}
.textwkole span
{
    position:relative;

    font-size: 0.8em;
    transform-origin: 0 100px;
}




#curve{
    fill: transparent;
}
.textWLogo{
    fill: white;
    transform-origin: 50% 50%;
    animation: rotate 15s linear infinite;
}

@keyframes rotateText{
    from{
        transform: rotateZ(0deg);
    }
    to{
        transform: rotateZ(360deg);
    }
}

@keyframes rotate{
    from{
        transform: rotateZ(0deg);
    }
    to{
        transform: rotateZ(360deg);
    }
}