body {
    background-color: #333;
}
.title {
    color: azure;
    font-size: 60px;
    margin-top: 20px;
    display: flex;  
    justify-content: center; 
}
.title::before {content: '';
display: block;
border: 3px solid #ffffff;
height: 60px;
width: 60px;
border-radius: 50%;
background: red;
position: absolute;
transform: translate(-190px, 0px);
}
.title::after {content: '';
height: 60px;
width: 60px;
border: 3px solid #ffffff;
border-radius: 50%;
background: rgb(0, 81, 255);
position: absolute;
transform: translate(190px, 0px);
}
