body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #87CEEB;
    margin: 0;
}

.contenedor {
    display: flex;
    align-items: center;
    gap: 50px;
}

.bill {
    width: 400px;
    height: 400px;
    background: black;
    border-radius: 200px 0 0 200px;
    overflow: hidden;
}

.ojo {
    display: grid;
    place-items: center;
    width: 150px;
    height: 80px;
    background: white;
    border-radius: 0 0 60px 60px;
    transform: translate(80px, 100px) rotate(-45deg);
}

.ojo > * {
    grid-area: 1 / 1 / 2 / 2;
}

.ojo .brillo {
    width: 450px;
    height: 450px;
    border-radius: 225px 0 0 225px;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(40px);
}

.ojo .pupil {
    width: 50px;
    height: 50px;
    background: black;
    border-radius: 50%;
    transform: translate(-185px, -215px);
}

.reflejo {
    display: flex;
    gap: 10px;
    margin-top: -30px;
    margin-left: 20px;
}

.reflejo div {
    width: 40px;
    height: 40px;
    background-color: rgb(224, 215, 215);
    border-radius: 50%;
}

.reflejo div:nth-child(1) {
    transform: translate(-70px, -240px);
}

.reflejo div:nth-child(2) {
    width: 80px;
    height: 40px;
    transform: translate(-70px, -210px) rotate(35deg);
}

.boca {
    width: 400px;
    height: 140px;
    background: rgb(255, 255, 255);
    border-radius: 80px / 5px;
    overflow: hidden;
    clip-path: ellipse(120px 80px at 120px 80px);
    transform: translate(-112px, 215px) rotate(140deg);
}

.diente1 {
    display: flex;
    transform: translate(20px, -52px) rotate(-90deg);
}

.diente1 div:nth-child(1) {
    width: 80px;
    height: 70px;
    background-color: red;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    transform: translate(22px,-110px) rotate(0deg);
}

.diente1 div:nth-child(2) {
    width: 90px;
    height: 70px;
    background-color: red;
    transform: translate(-20px,-50px);
}

.diente1 div:nth-child(3) {
    width: 60px;
    height: 60px;
    background-color: red;
    border-radius: 0 20px 40px 20px;
    transform: translate(-40px,-0px) rotate(0deg);
}

.bill2 {
    width: 30px;
    height: 370px;
    background: black;
    overflow: hidden;
    transform: translate(-50px,-0px);
}

.brillo2 {
    width: 20px;
    height: 370px;
    background: rgba(255, 255, 255, 0.4);
    filter: blur(20px);
    border-radius: 40px;
    transform: translate(-100px,-0px);
}

.reflejo2 {
    display: flex;
}

.reflejo2 div {
    width: 30px;
    height: 20px;
    background-color: rgb(201, 191, 191);
}

.reflejo2 div:nth-child(1) {
    transform: translate(-200px, -130px);
}

.reflejo2 div:nth-child(2) {
    transform: translate(-230px, 120px);
}

.bill3 {
    width: 100px;
    height: 400px;
    background: black;
    overflow: hidden;
    transform: translate(-280px,-0px);
}

.brillo3 {
    width: 80px;
    height: 370px;
    background: rgba(255, 255, 255, 0.15);
    filter: blur(20px);
    border-radius: 40px;
    transform: translate(-400px,-0px);
}

.reflejo3 {
    display: grid;
}

.reflejo3 div {
    width: 80px;
    height: 20px;
    background-color: rgb(218, 208, 208);
}

.reflejo3 div:nth-child(1) {
    transform: translate(-550px, -130px);
}

.reflejo3 div:nth-child(2) {
    transform: translate(-550px, 120px);
}
