body {
    margin: 0;
    padding: 0;
  }
  :root {
    --skin: #f6c09c;
    --background: #ed4042;
    --red: #ed2860;
    --dark-red: #680524;
    --black: #00243a;
    --white: #fff;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

    background: var(--background);
  }
  
  .head {
    width: 130px;
    height: 250px;
    background: var(--skin);
    border-radius: 65px;
    position: relative;
  }
  .eyes {
    position: absolute;
    width: 35px;
    height: 28px;
    background: var(--white);
    top: 55px;
    
    
  }
  .eye-left {
    
    left: 32px;
    text-align: center;
    /*border-radius: 30% 0 50% 50%;*/
    border-radius: 7px 0 20px 20px;
  }
  .eye-right {  
    
    right: 32px;
    text-align: center;
    /*border-radius: 0 30% 50% 50%;*/
    border-radius: 0 7px 20px 20px;
        
  }
  .pupil {
    width: 7.5px;
    height: 7.5px;
    background: var(--black);
    
    margin: 6px auto;
    border-radius: 4px;
  }

  .bottom-face {
    position: absolute;
    width: 130px;
    height: 159px;
    line-height: 159px;
    background: var(--black);
    top: 92px;
    border-radius: 60px 60px 80px 80px;
    
    text-align: center;
  }
  
  .neck {
    position: absolute;

    width: 100px;
    height: 60px;
    background: #F7BCA7;
    
    top: 210px;

    left: calc(50% - 50px);
  }
  .nose {
    width: 35px;
    height: 25px;
    line-height: 30px;
    background: var(--skin);

    display: inline-block;
    vertical-align: top;
    border-radius: 0 0 20px 20px;
  }
  .mouth {
    background: var(--dark-red);
    width: 55px;
    height: 40px;
    margin: -120px auto;

    text-align: left;
    line-height: 30px;
    border-radius: 0 0 30px 30px;
  }
  
  .teeth {
    background: var(--white);
    width: 40px;
    height: 10px;
    border-radius: 0 0 7px 0;
  }
  .tongue {
    background: var(--red);
    width: 29px;
    height: 15px;
    
    display: inline-block;
    vertical-align: bottom;
    border-radius: 0 8px 2px 16px;
    margin-left: 4.5px;
  }

  .ear-left {
    width: 25px;
    height: 30px;
    background: #F7BCA7;
    margin-top: -70px;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-radius: 15px 0 0px 15px;
    
  }
  .ear-left-int {
    text-align: center;
    padding-top: 2px;
    box-sizing: border-box;

    color: #FD9D8E;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    
  }
  .ear-right {
    width: 23px;
    height: 30px;
    background: #F7BCA7;
    margin-top: -70px;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 0 15px 15px 0;
  }
  .ear-right-int {
    text-align: center;
    padding-top: 2px;
    box-sizing: border-box;

    color: #FD9D8E;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
  }