img.infinite_rotating_logo{
    animation: rotate_image 10s linear infinite;
    transform-origin: 50% 50%;
}
 
@keyframes rotate_image{
	100% {
    	transform: rotate(360deg);	
    }
}

body {
    background-color: white;
    margin-left: 105px;
	margin-right: 105px;
}

h1 {
    color: white;
    margin-left: 1px;
} 
</h1>
</body>

