.parentsbox {
  width: 400px;
  height: 400px;
  background: yellow;
  border-radius: 30%;

}

p{
  display: none;
}

.pighead {
  width: 220px;
  height: 220px;
  background: pink;
  position: relative;
  border-radius: 100%;
  top: 30px;
  left: 90px;
}

.pigear {
  width: 0px;
  height: 0px;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 60px solid magenta;
  border-top-left-radius: 30%;
  border-top-right-radius: 30%;

}

.ear1 {
  position: absolute;
  top: 73px;
  left: 100px;
  transform: rotate(-30deg);
}

.ear2 {
  position: absolute;
  top: 77px;
  left: 250px;
  transform: rotate(25deg);
}

.pigeye {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 100%;
}

.pigeye::before {
  content: '';
  display: flex;
  position: absolute;
  width: 0px;
  height: 0px;
  border: solid 8px black;
  border-radius: 50%;
  right: 6px;
  top: 2px;
}

.eye1 {
  position: absolute;
  top: 140px;
  left: 160px;
}

.eye2 {
  position: absolute;
  top: 140px;
  left: 230px;
}

.pignose {
  width: 85px;
  height: 45px;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-left-radius:40% ;
  border-bottom-right-radius: 40% ;
  background-color: white;
  position: absolute;
  top: 175px;
  left: 155px;
}

.pignose::before {
  content: '';
  position: absolute;
  border: solid 9px magenta;
  border-radius: 50%;
  top: 15px;
  left: 12px;
}

.pignose::after {
  content: '';
  position: absolute;
  border: solid 9px magenta;
  border-radius: 50%;
  top: 15px;
  right: 12px;
}

.pigsmile {
  width: 50px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 10px 0 0 black;
  position: absolute;
  top: 200px;
  left: 170px;
}