@keyframes rotate {
	from{transform:rotate(0deg);}
	to{transform:rotate(360deg);}

}
:root {
	background:red url("res/image/background.png");
	overflow:hidden;
}
.logo {
	height:80vh;
	width:80vw;
	background-size:contain;
	background-image:url("res/image/logo-t.png");
	
	background-repeat: no-repeat;
    background-position: center;
    margin:auto;
    animation:rotate 4s infinite linear;;
    
}