.body {
    position: relative;
    height: 80px;
    width: 150px;
    border-radius: 25px 25px 30px 33px;
    background-color: rgb(125, 123, 121);
    margin: 50px auto;
    box-shadow: -2px 1px rgba(0,0,0,1);
}
.tail {
    position: relative;
    top: 15px;
    height: 90px;
    width: 3px;
    background-color: black;
    animation: 2s ease tail infinite;
    transform-origin: top left; 
}
.tail:after {
    position: absolute;
    bottom: -2px;
    left: -3px;
    content: '';
    height: 3px;
    width: 3px;
    background-color: transparent;
    border-radius: 10px;
    border: 3px dotted black;
}

.headContainer {
    position: absolute;
    right: -50px;
    top: -30px;
    width: 110px;
}
.head {
    position: absolute;
    height: 65px;
    width: 70px;
    left: calc(50% - 35px);
    border-radius: 25px 25px 30px 33px;
    background-color: rgb(111, 109, 108);
    box-shadow: -2px 1px rgba(0,0,0,1);
}

.ear {
    height: 75px;
    width: 45px;
    background-color:  rgba(125, 123, 121, 1);
    position: absolute;
    top: -15px;
    box-shadow: -2px 1px rgba(0,0,0,1);
}
.leftEar {
    left: 0;
    border-radius: 10px 15px 0 15px;
}
.rightEar {
    right: 0;
    border-radius: 15px 10px 15px 0;
}

.eye {
    height: 10px;
    width: 10px;
    background-color: black;
    border-radius: 10px;
    position: absolute;
    top: 20px;
}
.leftEye {
    left: 16px;
}
.rightEye {
    right: 12px;
}
.nose {
    position: absolute;
    left: 50%;
    top: 60%;
    height: 80px;
    width: 20px;
    background-color: rgb(125, 123, 121);
    box-shadow: -2px 1px rgba(0,0,0,1);
    border: 1px solid black;
    border-radius: 0 10px 0 0;
   border-right: 3px dotted;
}
.leg {
    position: absolute;
    height: 85px;
    width: 30px;
    top: 35px;
    border-radius: 30px 33px 25px 25px;
    background-color: rgb(111, 109, 108);
    box-shadow: -2px 1px rgba(0,0,0,1);
}
.leg:nth-child(2n + 1) {
    top: 30px;
    z-index: -1;
    transform: translateX(5px);
}
.legBack {
    left: -5px;
}
.legFront {
    right: 10px;
}

@keyframes tail {
    0% {
        transform: rotate(-15deg);
    }

   50% {
       transform: rotate(15deg);
   }
    100% {
        transform: rotate(-15deg);
    }
}
