.welcome {
  animation: welcome-spin infinite 5s linear;
  width: 80px;
  height: 80px;
  text-align: center;
}

@keyframes welcome-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
