body {
    background-color: #333;
    color: #fff;
    font-family: sans-serif;
    font-size: 5rem;
}

.wrapper {
    padding: 50px;
    min-height: 100%;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.block-wrapper,
.title {
    margin-bottom: 100px;
}

.title {
    text-align: center;
}

.block-wrapper {
    display: flex;
    justify-content: center;
}


.text {
    font-size: 2rem;
}

/* ====================================================== */

.title{
    position: relative;
}

.title::before{
    content: '';
    position: absolute;
    top: -5%;
    left: 15%;
    display: block;
    width: 100px;
    height: 100px;
    background: red;
    border-radius: 50%; 
    border: 4px solid white;
}
.title::after{
    content: '';
    position: absolute;
    top: -5%;
    right: 15%;
    display: block;
    width: 100px;
    height: 100px;
    background: blue;
    border-radius: 50%; 
    border: 4px solid white;
}



