@keyframes rotate360 {
  to {
    transform: rotate(360deg);
  }
}
/* img { animation: 2s rotate360 infinite linear; } */

.loading {
  animation: 2s rotate360 infinite linear;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url("../assets/loading.png");
  background-size: 6%;
  background-repeat: no-repeat;
  background-color: transparent;
  background-position: center;
}
