*{
	margin: 1;
	padding: 1.5;
}

body{
	background-color: lightpink;
}

header{
	display: none;
}

@keyframes rotate360{
	0% {transform: rotate(0deg);}
	100%{transform: rotate(360deg);}
}

article{
	float: left;
}


section#swirl{
	width: 6.25vw;
	background-color: lightpink;
	animation: rotate 5s infinite;
	animation-name: rotate360;
	animation-timing-function: linear;
	animation-duration: 5s;

}

