body {
    background-color: black;
	color:white;
}

#huj {
    text-align: center;
    align-items: center;
    margin: auto;
}

img {
    margin: auto;
    animation: img 2s infinite 1ms;
    height: 300px;
    width: 300px;
}

video {
    margin: auto;
}

@keyframes img {
    0% {
        scale: 100%;
        rotate: 0deg;
    }

    25% {
        scale: 50%;
        rotate: -45deg;
    }

    50% {
        scale: 100%;
        rotate: 0deg;
    }

    75% {
        scale: 50%;
        rotate: 45deg;
    }

    100% {
        scale: 100%;
        rotate: 0deg;
    }
}
