body {
    margin: 0;
    padding: 0;
    background-color: white;
}

.circle {
    border-radius: 50%;
    position: relative;
}

.eye {
    border-radius: 50%;
    background-color: black;
    width: 65px;
    height: 65px;
    position: relative;
}

.tooth {
    border-radius: 20px;
    background-color: white;
    width: 45px;
    height: 65px;
    position: relative;
}

.container {
    display: flex;
    justify-content: space-between;
}

.clickey {
    position: relative;
    margin: 0 auto;
    width: 50px;
    height: 50px;
}

@keyframes shrinkmouthy { /* Keyframes to shrink mouth on Y axis */
    0% {height: 150px;}
    50% {transform: scale(1, 0.5);}
    100% {height: 150px;}
}

@keyframes moveteethupper { /* Keyframes to move upper teeth on Y axis */
    0% {top: -25px; transform: scale(1, 1);}
    50% {top: 0px; transform: scale(1, 1.85);}
    100% {top: -25px; transform: scale(1, 1);}
}

@keyframes moveteethlower { /* Keyframes to move lower teeth on Y axis */
    0% {top: -30px; transform: scale(1, 1);}
    50% {top: -60px; transform: scale(1, 1.8)}
    100% {top: -30px; transform: scale(1, 1)}
}
