/*
 * ur a qt - harry.xbt
 */

html, body {
	margin: 0;
	height: 100%;
	width: 100%;
	aspect-ratio: 1;
	position: relative;
}

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

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

.rotate {
	-webkit-animation: rotate 60s linear infinite;
	animation: rotate 60s linear infinite;
}

img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
