body {
    background: #2f2f2f;
    color: #fff;
}

.block {
    position: relative;
    margin: 30px auto 0;
    max-width: 300px;
}

h1 {
    margin-top: 50px;
    font-size: 60px;
    text-align: center;
    position: relative;
}

h1::before {
    content: " ";
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: 4px solid #fff;
    background-color: #f9785b;
    position: absolute;
    top: -30%;
    left: -100px;
}

h1::after {
    content: " ";
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    border: 4px solid #fff;
    background-color: #659deb;
    position: absolute;
    top: -30%;
    right: -100px;
    
}