@keyframes rotation {
   from {
      transform: rotate(0deg);
   }
   to {
      transform: rotate(359deg);
   }
}

.spinner-img {
   animation: rotation 5s infinite linear;
   text-align: center;
}

.spinner-img img{
   width: 100%;
}

.loading-text {
   text-align: center;
   margin-top: 20px;
   font-size: 24px;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
   color: white;
   background-color: black;
   border-radius: 40px;
   padding: 20px;
}