<div></div>
<div></div>
<div></div>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
background: #62306D;
}
div {
height: 100px;
width: 100px;
border-radius: 0 0 50% 50%;
background: #F7EC7D;
margin-top: 100px;
}
div:nth-child(2) {
transform: rotate(180deg);
margin-top: -100px
}
</style>