body {
    background-color: #333;
    color: #fff;
    font-family: sans-serif;
    font-size: 5rem;
    padding-top: 5vh;
}

.wrapper {
    display: flex;
    justify-content: center;
}

.title {
    text-align: center;
}

/* ====================================================== */

.title {
    position: relative;
}

.title::before, 
.title::after{   
    position: absolute;
    content: "";
    display: block;
    height: 100px;
    width: 100px;
    border-radius: 90%;
    border: #fff solid 5px;
}

.title::before{
    background: purple;
    transform: translate(-150%, -15%);
}
.title::after{
    background: black;
    transform: translate(430%, -90%);
}