* {
    background: #2e2828;
}

.title {
    color: white;
    font-size: 100px;
    text-align: center;
    position: relative;
}

.title::before {
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    background: red;
    border-radius: 50px;
    position: absolute;
    top: 10%;
    left: 20%;
    border: 7px solid white;
}

.title::after {
    content: "";
    display: block;
    width: 100px;
    height: 100px;
    background: blue;
    border-radius: 50px;
    position: absolute;
    top: 10%;
    right: 20%;
    border: 7px solid white;
}