@keyframes rotation {
	0% {
		rotate: var(--axis) 0;
	}
	100% {
		rotate: var(--axis) 180deg;
	}
}

.one {
	--axis: x;
	background-image: url('../Images/Logo.jpg')
	width: 50px;
	height: 50px;
}
/*@media all and (max-width: 20em) {
	one {
	width: 50%;
	}*/
.box {
	display: inline-block;
	height: 3em;
	width: 3em;
	line-height: 3em;
	text-align: center;
	border: medium solid #333;
	margin: 0.5em;
	font-size: 1.5em;
	animation: rotation 3s ease infinite alternate;
}
/*@media all and (max-width: 20em) {
	box {
	width: 50%;
	}*/