body {
    background-color: #333;
    color: #fff;
    font-family: sans-serif;
    font-size: 5rem;
    display: flex;
    justify-content: center;
    position: relative;
}

/* ====================================================== */

.wrapper::before {
    content: ' ';
    display: block;
    transform: translate(-125px, 205px);
    background: #ffffff;
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

.title::before {
    content: ' ';
    display: block;
    transform: translate(-120px, 100px);
    background: #ee4561;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.wrapper::after {
    content: ' ';
    position: absolute;
    transform: translate(392px, -85px);
    z-index: -1;
    background: #ffffff;
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

.title::after {
    content: ' ';
    position: absolute;
    transform: translate(20px, 0px);
    background: #1a17c9;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}



