.container {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  line-height: 30px;
  font-size: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.72);
  color: #fff;

  @keyframes rotate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .img {
    width: 80px;
    height: 80px;
    background: url(./images/loading.png) no-repeat;
    background-size: contain;
    animation: rotate 1s infinite linear;
  }
  .info {
    margin-top: 30px;
  }
}
