body {
    background-color: #302d2d;
    color: #ffffff;
    font-family: sans-serif;
    font-size: 5rem;
    padding-top: 5vh;
}

.block {
    display: flex;
    justify-content: center;
}

.title {
    text-align: center;
    position: relative;
}

.title::before,
.title::after {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #ffffff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.title::before {
    left: -150px;
    background: #f54a4a;
}

.title::after {
    right: -150px;
    background: #5858f5;
}