#circle svg {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 200px;
    height: 200px;
    animation-name: rotate;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

div#circle {
    position: relative;
    width: 200px !important;
    padding-bottom: 200px !important;
    overflow: hidden;
}

div#circle > img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

#circle img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}