<div class="con">
<div class="circle"></div>
<div class="line"></div>
<div class="circle"></div>
</div>
<style>
* {margin: 0}
.con {
background: #5D3A3A;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.circle, .line {background: #B5E0BA}
.line {
margin: 1.22rem 0;
height: 2.5rem; width: 12.5rem;
}
.circle {
height: 3.81rem; width: 3.81rem;
border-radius: 50%;
}
</style>