body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #ffefd5;
}

.face {
    width: 200px;
    height: 200px;
    background: #ffcc99;
    border-radius:50%;
    position: relative;
    box-shadow: 0 0 10px rgba (0,0,0,0.2);
}

.eye{
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 60;
    animation: blink 1.2s infinite;
}

.eye.left{
    left:40px;
}

.eye.right{
    right:40px;
}

.eye::before{
    content: "";
    width: 20px;
    height: 20px;
    background: black;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left:10px;
}

.mouth {
  width: 100px;
  height: 50px;
  border-bottom: 5px solid red;
  border-radius: 0 0 100px 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    
}

@keyframes blink{
    0%, 90% ,100% {height: 40px;}
    95% {height: 5px;}
} 



