 *{
    box-sizing: border-box;
    margin: 0%;
 }
 body{
    min-height: 100vh;
    background-color: #545b7c;
    --fluid:champ(1rem, 1rem + 3vw, 2rem);
    font-size: #{'round(down, var(--fluid), 2px)'};
    font-family:'Aboreto', system-ui;
    display:grid;
    place-content: center;
 }
 .face{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
 }
 .eyes{
    display: flex;
    gap: 9px;
 }
 .eye{
    border-radius: 50%;
    width: 9.5rem;
    aspect-ratio: 1/1;
    background-color: #ececec;
    display: flex;
    justify-content: center;
    align-items: center;
 }
 .eyeball{
    width: 2.5rem;
    aspect-ratio: 1/1;
    background-color: #222;
    border-radius: 50%;
    transition: transform 0.05s ease-out;
    will-change: transform;
 }
 .eye{
    position: relative;
    overflow: hidden;
 }
 .mouth{
    width: 8rem;
    height: 4rem;
    border-bottom: 1rem solid gold;
    border-radius: 50%;
    rotate: -10deg;
 }
 .cute-footer{
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
 }
 .cute-footer p{
    margin: 0;
    color: #ececec;
    font-size: 0.9rem;
    text-align: center;
    letter-spacing: 1px;
 } 
.text-content {
  position: absolute;
  bottom: 20px;
  text-align: center;
  color: #ccc;
  font-size: 0.8rem;
  opacity: 0.8;
}
