body {
    background-color: #363636;
    color: #fff;
    font-family: sans-serif;
    font-size: 5rem;
    padding-top: 5vh;
}

.container {
    display: flex;
    justify-content: center;
}
.title {
    position: relative;
    text-align: center;
}
.title::before,
.title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 5px solid #fff;
    border-radius: 70px ;
}
.title::before {
    right: 111vh;
    background: #ff9999;
}
.title::after {
    left: 111vh;
    background: #8f67ec;
}

