@charset "utf-8";
/* CSS Document */

@keyframes rotating {
	0% {	rotate: 0; 	}
	100% {	rotate: 1turn; 	}
}

.disc {
	animation: rotating 35s linear infinite;
	border-radius: 50%;
	display: inline-block;
	position: fixed;
	bottom: 10px;
	right: 10px;
z-index: 999;

}

