body {
    background-color: #333;
    color: #fff;
    font-family: sans-serif;
    font-size: 5rem;
}


/* ====================================================== */
.title{
    position: relative;
    font-size: 40px;
    text-align: center;
}


.title::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: blue;
    border-radius: 50%;
    border: 4px solid #fff;
    transform: translate(600px , -5px);
}


.title::after {
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50px; 
    height: 50px;
    background: red;
    border-radius: 50%;
    border: 4px solid #fff;
    transform: translate(-600px , -5px);
}