/*------- STOPKA --------*/

.iconify {
    width: 3em;
    height: 3em;
    border-radius: 50%;
    box-shadow: 2px 2px 3px #aaa;
    margin: 8px;
}

.iconify.small {
    width: 20px;
    height: 20px;
}

.mybig {
    width: 60PX;
    height: 4em;
    color: #aaa;
}

.mybig:hover{
    color:rgb(131, 130, 130); 
    font-size: 1.1em;   
}

.iconify.noglow {
    border-radius: 0%;
    box-shadow: 0 0 0;
}

.bzium_me {
    animation: bziuming 1s infinite;
}

@keyframes bziuming {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(1deg) scale(1.05);
    }

    75% {
        transform: rotate(-2deg) scale(0.95);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

/*------- END STOPKA --------*/

