body {
    background-color: #333;
    color: #fff;
    font-family: sans-serif;
    font-size: 5rem;
    padding-top: 5vh;
}

.wrapper {
    display: flex;
    justify-content: center;
}

.title {
    text-align: center;
}

/* ====================================================== */

.title {
    position: relative;
}

.title::before {
    content: '';
    display: block;
    position: absolute;
    top: -10%;
    left: -40%;
    width: 100px;
    height: 100px;
    background: red;
    border-radius: 50px;
    border: 4px solid #fff;
}

.title::after {
    content: '';
    display: block;
    position: absolute;
    top: -10%;
    right: -40%;
    width: 100px;
    height: 100px;
    background: blue;
    border-radius: 50px;
    border: 4px solid #fff;
}





