 .badge {
    position: relative;
    width: 220px;
    height: 220px;
}

.svg-text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 10s linear infinite;
}

.svg-text text {
    font-size: 11px;
    letter-spacing: 4px;
    fill: #333;
    font-weight: 300;
}

.center {
    position: absolute;
    width: 140px;
    height: 140px;
    background: #f3f3f3;
    border-radius: 50%;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
     
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.center h2 {
    margin: 0;
    font-size: 35px;
    font-weight: 600;
}

.center span {
    font-size: 13px;
    letter-spacing: 3px;
    color: #555;
}

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