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::before {
    content: '        ';
    position: absolute;
    left: 30%;
    background: #bd3232;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid rgb(252, 250, 250);

}


.title::after {
    content: '';
    position: absolute;
    right: 30%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #32557f;
    border: 5px solid rgb(252, 250, 250);

}

.block-wrapper {
    position: relative;
}


