body {
    background-color: rgb(64, 64, 65);
}
.title {
    font-size: 50px;
    position: relative;
    left: 45%;
    color: white;
}
.title::before {
    content: '';
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: red;
    border-radius: 50px;
    border: 3px solid white;
    transform: translate(-150%, 0);
}
.title::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    background-color: blue;
    border-radius: 50px;
    border: 3px solid white;
    transform: translate(450%, -100%)
}