body {
    background-color: black;
    color: white;
    font-family: sans-serif;
    font-size: 50px;
    padding-top: 50px;
}

.wrapper {
    display: flex;
    justify-content: center;
}

.title {
    text-align: center;
}
/* =================================================== */

.title {
    position: relative;
}

.title::before,
.title::after {
    content: '';
    display: block;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    border: 2px solid white;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.title::before {
    background-color: red;
    left: -150px;
}

.title::after {
    background-color: blue;
    right: -150px;
}

