body{
    background-color: #305dcf;
}

footer{
    position: absolute;
    bottom: 0%;
}

/* Build the emoji face with gradients and shadow */
.emoji{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 300px;
    width: 300px;
    background-image: radial-gradient(
        #feca3e 58%,
        #ff8000 80%
    );
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 30px 30px 35px rgba(0,0,0,0.25);
}

/* Build the eyes */
/*
.eyes {

}
*/

.eye {
    
    top: 100px; /* Eye position remains fixed */
    right: 30%;    /* INSERT YOUR EYE SHAPE RULES HERE */
    height: 75px;
    width: 50px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
}
.eyedot{
    height: 25px;
    width: 25px;
    background-color: black;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
}
.eleft{
    top: 100px;
    left: 30%;
}
.eright{
    top: 100px;
    right: 30%;
    animation: dwink 5s infinite;
}
.left {
    top: 75px;
    left: 25%;
}

.right {
    top: 75px;
    right: 25%;
    animation: wink 5s 0.5s infinite;
}

@keyframes wink {
    50% {
        height: 10px; /* Close the eye */
        transform: translateY(32.5px); /* Move down to ensure symmetry (half of initial height minus half of new height) */
    }
    100% {
        height: 75px; /* Restore original height */
        transform: translateY(0); /* Return to initial position */
    }
}
@keyframes dwink {
    50% {
	height: 5px;
	transform: translateY(7.5px);
    }
    100% {
	height: 25px;
	transform: translateY(0);
    }

}
.mouth{
    height: 100px;
    width: 220px;
    background-color: #663d0f;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 25px;
    overflow: hidden;
    border-radius: 5px 5px 180px 180px
}

.teeth{
    height: 40px;
    width: 220px;
    background-color: #e9fbfa;
    position: absolute;
    bottom: 75px;
    border-radius: 5px 5px 80px 80px;
}

.tongue{
    height: 70px;
    width: 105px;
    position: absolute;
    background-color: red;
    border-radius: 50%;
    transform: translate(50%);
    top: 70px;
}
