
div{
    width: 500px;
    height: 500px;
}


h1{
    text-align: center;
    margin: 50px;
    color: blue;
}


h1::before{
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    background: brown;
    border-radius: 70px;
    border: 2px  solid #000000;
    transform: translate(62px, 43px);
}

h1::after{
        content: '';
    display: block;
    width: 50px;
    height: 50px;
    background: brown;
    border-radius: 70px;
    border: 2px  solid #000000;
    transform: translate(282px, -43px);
}

