JSFiddle - React, Tailwind, and code Playground

by BoxMan0617

HTML

<div id="gump">
    <div class="eye eye-left"></div>
    <div class="eye eye-right"></div>
    <div class="mouth"></div>
</div>

CSS

body {background-color: #333333;}

#gump {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    background-color: #FFFFFF;
    position: relative;
}

#gump .eye {
    width: 38px;
    height: 50px;
    background-color: #60c5f7;
    
    border-radius: 50%  50%  50%  50%  / 60%   60%   40%  40%;
    
    position: absolute;
    top: 50px;
}

#gump .eye-left {
    left: 40px;
    transform: rotateZ(10deg);
}
#gump .eye-right {
    right: 40px;
    transform: rotateZ(-10deg);
}

#gump .mouth {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 5px 5px 0 0 #60c5f7;
    transform: rotateZ(45deg);
    position: absolute;
    bottom: 50px;
    left: 50%;
    margin-left: -15px;
}