body {
    background-color: lightblue;
}

.main {
    height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.face {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: peachpuff;
    border-radius: 50%;
    width: 350px;
    height: 350px;
    flex-direction: column;
}

.eye_container {
    width: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    justify-content: space-evenly;
}

.eye {
    background: black;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: all 0.8s ease;
}

.wink {
    height: 5px;
    transition: height 0.8s ease;
}

.glare {
    height: 20px;
    width: 45px;
    transition: all 0.8s ease;
}

.mouth_container {
    width: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    justify-content: space-evenly;
}

.mouth {
    width: 40%;
    border: 10px solid black;
}