body {
  font-size: 18px;
  font-family: system-ui, sans-serif;
  line-height: 1.4;
  background-color: white;
  position: relative;
  margin: 0 auto;  /* centers the layout */
}

p {
	text-align: center;
	color: black;
}

img  {
	display: block;
  	margin-left: auto;
  	margin-right: auto;
}
.rotate {
  animation: rotation 8s infinite linear;
}

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