.bot {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;

}

.eyes {
    position: relative;
    width: 90%;
    height: 60%;
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: space-evenly;
}

.left-eye,
.right-eye {
    position: relative;
    margin-top: 20%;
    width: 30%;
    height: 60%;
    border-radius: 45%;
    background-color: #f0f0f0;
    box-shadow:
        6px 6px 12px #d5d5d5,
        -6px -6px 12px #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
}

.eyeball {
    width: 20px;
    height: 20px;
    background-color: black;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.mouth {
    width: 90%;
    margin: auto;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mouth::before {
    content: '';
    width: 30%;
    height: 30%;
    border-radius: 50%;
    border-bottom: 1px solid black;
}