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 {
    content: '';
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    border: 10px solid white;
    
}

.title::before{
    background-color: rgb(222, 55, 18);
    margin-left: -150px;
}

.title::after{
    margin-left: 50px;
    background-color: rgb(25, 41, 220);
}