:root {
     overscroll-behavior: none; 
}
body {
	background: #000;
	cursor: url("/img/47664.png") 10 10, default;
    overflow:hidden;
}
p, a {
    position: absolute;
    top: 10px;
}
#images {
    transform: scale(1.2);
    animation: aaaa ease-in-out 4s infinite;
}
#images>img {
    animation: aaaaa ease-in-out .8s infinite;
	image-rendering: pixelated;
	position: relative;
	display: inline-block;
	opacity: 0.5;
    left: 50px;
    top: 70px;
    height: 200px;
    margin: -16px;
}
@keyframes aaaaa {
    0% {    transform: rotate(-5deg); }
    50% {   transform: rotate( 5deg);}
    100% {  transform: rotate(-5deg); }
}
@keyframes aaaa {
    0% {    transform: scale(1.3); }
    50% {   transform: scale(1.24); }
    100% {  transform: scale(1.3); }
}


