* {
    box-sizing: border-box;
  }

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

  html,
  body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }

  .face {
    position: relative;
    width: 200px;
    height: 230px;
  }

  /* Pomarańczowa czapka */
  .hat-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: orange;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    z-index: 1;
  }

  .hat-rect {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 10px;
    background: orange;
    z-index: 1;
  }

  .hat-tip {
    position: absolute;
    top: -15px;
    left: 50%;
    width: 40px;
    height: 40px;
    background: orange;
    transform: translateX(-50%);
    z-index: 2;
  }

  /* Szare uszy */
  .ear {
    position: absolute;
    top: 125px;
    width: 25px;
    height: 100px;
    background: gray;
    z-index: 0;
  }

  .ear.left {
    left: -25px;
  }

  .ear.right {
    right: -25px;
  }

  /* Oczy */
  .eye {
    position: absolute;
    top: 125px;
    width: 100px;
    height: 100px;
    background: lightgray;
    border-radius: 50%;
    z-index: 3;
  }

  .eye.left {
    left: 0;
    transform: rotate(25deg);
    transform-origin: center;
  }

  .eye.right {
    right: 0;
    transform: rotate(-25deg);
    transform-origin: center;
  }

  .eye .lid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: gray;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }

  .eye .pupil {
    position: absolute;
    bottom: 30px;
    left: 35px;
    width: 30px;
    height: 20px;
    background: black;
    border-radius: 0 0 30px 30px; /* półkole */
  }

  /* Beżowa dolna część twarzy */
  .cheek {
    position: absolute;
    bottom: -110px;
    width: 50%;
    height: 50%;
    background: #f0e5b5;
    border-bottom-left-radius: 100px;
    z-index: 1;
  }

  .cheek.left {
    left: 0;
    border-top-right-radius: 0;
  }

  .cheek.right {
    right: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 100px;
  }

  /* Środkowa linia (nos?) */
  .line {
    position: absolute;
    bottom: -110px;
    left: 50%;
    width: 2px;
    height: 50%;
    background: #d8d1a1;
    z-index: 2;
  }

  .jumper {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
  }