body {
    background-color: #1e1e22;
    color: #fff;
    margin: 50px 0;
}

.container {
    margin: 0 auto;
    max-width: 800px;
}

.header__title{
    text-align: center;
    font-size: 40px;
    position: relative;
}
.header__title::before{
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgb(252, 105, 105);
    border-radius: 50%;
    border: 2px solid #FFF;
    top: -5px;
    left: 230px;
}
.header__title::after{
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgb(105, 115, 252);
    border-radius: 50%;
    border: 2px solid #FFF;
    top: -5px;
    right: 230px;
}