body {
    background: black;
    color: white;
    font-size: 64px;
    text-align: center;
}

.title {
    position: relative;
    display: inline-block;
}

.title::before {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    background: red;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-200px, -50px);
    border: 2px solid snow;
    border-radius: 50px;
}

.title::after {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    background: rgb(0, 60, 255);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(100px, -50px);
    border: 2px solid snow;
    border-radius: 50px;
}