body {
    padding: 30px;
}

.wrapper {
    display: flex;
    justify-content: center;
    position: relative;
}

.title {
    font-size: 100px;
}

.title::before {
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    background-color: rgb(240, 6, 6);
    position: absolute;
    transform: translate(-110px, 0px);
    border-radius: 100%;
}

.title::after {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    background-color: rgb(98, 16, 239);
    position: absolute;
    transform: translate(437px, -100%);
    border-radius: 100%;
}