body {
    background: #000;
    color: #fff;
}
* {
    margin: 0 0;
}

.block {
    display: flex;
    justify-content: center;
    width: 700px;
    height: 100px;
    margin: 0 auto;
    padding-top: 50px;
}

.title {
    text-align: center;
    font-size: 50px;
    width: 300px;
}

.block::before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    background: red;
    border-radius: 50px;
    border: 2px solid #fff;
}
.block::after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    background: rgb(155, 235, 52);
    border-radius: 50px;
    border: 2px solid #fff;
}