<div>
  
</div>
body{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

div{
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #ffacb0;
}

div:before{
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffabab;
}

div:after{
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #ffabab;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.