/*0706012210056 - Marshanda*/
/*HTML sama dengan yang di slides*/
/*hanya saja penamaan classnya yang berbeda*/
/*pighead     --> head*/
/*pigear ear1 --> ear1*/
/*pigear ear2 --> ear2*/
/*pigeye eye1 --> eye1*/
/*pigeye eye2 --> eye2*/
/*pignose     --> nose*/
/*pigsmile    --> mouth*/

.parentsbox {
    width: 300px;
    height: 300px;
    background-color: yellow;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  
  }
  
  .pighead {
    width: 150px;
    height: 150px;
    background-color: #b99976;
    border-radius: 100%;
    position: absolute;
    
  }
  
  
  .pighead::before {
    content: "";
    position: absolute;
    top: 120px;
    left: -20px;
    width: 190px;
    height: 100px;
    background-color: #b99976;
    border-radius: 50% 50% 0 0;
  
  }
  
  .pigear {
    width: 60px;
    height: 40px;
    background-color: #987554;
    transform: rotate(45deg);
    position: absolute;
    top: 80px;
    left: 190px;
    border-radius: 50px 50px 0 0;
    
  }
  
  .pigear .ear2 {
    transform: rotate(-45deg);
    left: 65px;
  }
   .ear1 {
    transform: rotate(-45deg);
    left: 65px;
  }
  
  
  .pigeye {
    width: 24px;
    height: 30px;
    background-color: black;
    border-radius: 50%;
    position: absolute;
    top: 128px;
    left: 115px;
    
  }

  
   .eye2 {
    left: 170px;
    
  }
  
  .eye1 p {
    width: 38px;
    height: 5px;
    font-size: 36px;
    color: white;
    font-weight: bolder;
    text-align: center;
    margin: 0;
    position: absolute;
    top: -18px;
  }
  
   .eye2 p {
    width: 38px;
    height: 5px;
    font-size: 36px;
    color: white;
    font-weight: bold;
    text-align: center;
    margin: 0;
    position: absolute;
    top: -18px;
  }
  
  .pignose {
    border-radius: 100%;
    position: absolute;
    top: 170px;
    left: 129.5px;
    transform: rotate(180deg);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 20px solid black;
    z-index: 5;
  
  }
  
  .pignose p {
    width: 20px;
    height: 10px;
    font-size: 24px;
    color: #987554;
    font-weight: bold;
    text-align: center;
    margin: 0;
    position: absolute;
    bottom: -4px;
    right: -11.5px;
    letter-spacing: 5px;
  }
  
  .pigsmile {
    position: absolute;
    top: 80px;
    left: 90px;
    width: 35px;
    height: 30px;
    border-radius: 100%;
    background: #7a593b;
    transform: rotate(-35deg);
    margin: 99px 30px;
    z-index: 4;
  
  }
  
  .pigsmile::before {
    content: "";
    position: absolute;
    width: 35px;
    height: 30px;
    border-radius: 100%;
    background: #7a593b;
    transform: rotate(70deg);
    margin: 19px 25px;
    z-index: 3;
  }
  
  