body {
    background-color: rgb(62, 62, 62);
    padding-top: 30px;
    font-size: 50px;
    color: white;
}

.wrapper {
    display: flex;
    justify-content: center;
}

.title {
    text-align: center;
    position: relative;
}

.title::before,
.title::after {
    content: '';
    /* display: block; */
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 3px solid white;
    top: 50%;
    transform: translateY(-50%);
}

.title::before {
    background-color: rgb(255, 60, 60);
    left: -100px;
}

.title::after {
    background-color: rgb(98, 70, 254);
    right: -100px;
}