.parentbox{
    height: 300px;
    width:300px;
    background-color: yellow;
    border-radius: 20px;
    position: relative;

}
.pighead{
    background-color: pink;
    border-radius: 100px;
    height: 200px;
    width: 200px;
    margin-left: 50px;
    z-index: -3;

    

}
.pigear{
    height: 0px;
    width: 0px;
    border-radius: 50px;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 50px solid palevioletred;
    

}
.ear1{
    transform: rotate(195deg);
    margin-left: 180px;
    margin-bottom: 250px;
    margin-top: -190px;
 
}
.ear2{
    transform: rotate(155deg);
    margin-left: 50px;
    margin-bottom: 250px;
    margin-top: -300px;

}
.pigeye{
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 20px;


}
.eye1{
    margin-left: 100px;
    margin-bottom: 200px;
    margin-top: -240px;
    

}
.eye2{
    margin-left: 170px;
    margin-top: -230px;
    margin-bottom: 200px;

}
.pignose{
    margin-left: 100px;
    margin-bottom: 100px;
    margin-top: -190px;
    background-color: palevioletred;
    border-radius: 50px;
    width: 75px;
    height: 40px;
    margin-left: 110px;
    position: relative;
    animation: nose 4s infinite;
    
}
.pigsmile {
    width: 50px;
    height: 80px;
    background: radial-gradient(circle at 50% 120%, transparent 80px, black 5px);
    border-radius: 50%;
    transform: rotate(179deg);
    position: relative;
    left: 125px;
    margin-top: -150px;

}

p{
    font-size: 150px;
    position: relative;
    margin-top: -150px;
    margin-bottom: 50px;
    bottom: 115px;
    

    
}
@keyframes nose {
    0%, 100% {
        top: 1px;
    }
    50% {
        top: 10px;
    }
}