* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    height: 100%;
    width: 100%;
}
.face{
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background-color: #fcc755;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mouth{
    width: 200px;
    height: 75px;
    background-color: #a35151;
    border-radius: 0 0 50px 50px;
    position: absolute;
    top: 310px;
    left: 150px;
}
.eyes{
    position: relative;
    top: -70px;
    display: flex;
}
.eyes .eye{
    position: relative;
    width: 80px;
    height: 80px;
    display: block;
    background: #fff;
    margin: 0 15px;
    border-radius: 50%;
}
.eyes .eye::before{
    content: "";
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
}
#left-eye{
    right: 20px;
}
#right-eye{
    left: 20px;
}