
.rotatingcircle {
    position: relative;
    width: 500px;
    height: 500px;
    margin-left: 50px;
    
  }

  

  .rotatingcircle img.background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: rotate 10s linear infinite;
  }

  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

  .rotatingcircle img.center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  