.parentsbox {
    height: 500px;
    width: 500px;
    border-radius: 100px;
    background-color: yellow;
    position: relative;
}

.pighead {
    height: 250px;
    width: 250px;
    border-radius: 50%;
    background-color: pink;
    position: absolute;
    left: 125px;
    top: 50px;
}


.pigear {
    width: 40px;
    height: 10px;
    background-color: magenta;
    position: absolute;
    border-radius: 40px 40px 0 0;
    transform: scaleX(4.0);
}

.pigear:after {
    
    width: 0;
	height: 0;
    content: '';
	border-left: 40px solid transparent;
	border-right: 40px solid transparent;
	border-top: 60px solid magenta;
    position: absolute;
    transform: scaleX(0.5) scaleY(0.915);
    top: 7.5px;
    right: -20px;
}



.ear1{
    left: 126px;
    top: 72px;
    transform:  rotate(-20deg) scaleX(2.0);
}

.ear2{
    left: 333px;
    top: 72px;
    transform:  rotate(20deg) scaleX(2.0);
}

.pigeye {
    font-weight:bolder;
    font-size: 125px;
    background-color: white;
    width: 40px;
	height: 40px;
    border-radius: 50%;
    text-align: left;
    top: 40px;
    left: 133px;
    position: absolute;
}

.pigeye p{
    margin-top: -92.5px;
    margin-left: 7.5px;
}

.eye1{
    top: 150px;
    left: 175px;
}

.eye2{
    top: 150px;
    left: 275px;
}

.pignose {
    font-weight:bolder;
    font-size: 125px;
    color: magenta;
    background-color: white;
    width: 90px;
	height: 45px;
    border-radius: 42.5%;
    text-align: left;
    top: 187.5px;
    left: 200px;
    position: absolute;
}

.pignose p{
    margin-top: -82.5px;
    margin-left: 7.5px;
    letter-spacing: 12.5px;
}

.pigsmile {
    width: 50px;
    height: 25px;
    background-color: black;
    position: absolute;
    border-radius: 0 0 25px 25px;
    top: 240px;
    left: 215px;
}

.pigsmile:after {
    width: 50px;
    height: 25px;
    content: '';
    background-color: pink;
    position: absolute;
    border-radius: 0 0 40px 40px;
    transform: scaleY(0.5);
    top: -7px;
    right: 0px;
}