*{
    box-sizing: border-box;
}
body{
    background: #333131;
}
.title{
    color: #fff;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 50px;
    font-weight: 400;
}
.title::before{
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #e74949;
    border-radius: 100px;
    border: 2px solid #fff;
    transform: translate(-70%, 20%);
}
.title::after{
    content: '';
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #4e29d4;
    border-radius: 100px;
    border: 2px solid #fff;
    transform: translate(70%, 20%);
}