﻿@charset "utf-8";

.rotate {
  width: 50px;
  height: 50px;
  background-color: orange;
}
@media (prefers-reduced-motion: no-preference) {
  .rotate {
    animation: rotate 2s infinite linear;
  }
}
@keyframes rotate {
  0% {
    rotate: 0;
  }
  100% {
    rotate: 360deg;
  }
}

