.head {
    position: relative;
    height: 65px;
    width: 70px;
    border-radius: 25px 25px 30px 33px;
    background-color: #a5612a;
    margin: 20px auto;
    box-shadow: -2px 1px rgba(0,0,0,1);
}

.ear {
    height: 15px;
    width: 15px;
    background-color: inherit;
    position: absolute;
    top: -15px;
    z-index: -1;
    border: 10px solid black
}
.leftEar {
    left: -8px;
    border-radius: 10px 15px 0 15px;
}
.rightEar {
    right: -10px;
    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: 0;
    width: 0;
    border: 7px solid transparent;
    border-top-color: black;
}
.mouth {
    position: absolute;
    left: calc(50% - 4px);
    top: 60%;
    height: 10px;
    width: 10px;
    border: 1px solid black;
    border-radius: 10px;
    border-left: none;
    border-top: none;
}
.mouth:after {
    content: '';
    position: absolute;
    right: calc(-1px - 100%);
    height: 10px;
    width: 10px;
    border: 1px solid black;
    border-radius: 10px;
    border-right: none;
    border-top: none;
}
