body {
    background: #c6faf1;
  }
.penguin{
   /* Direct color change here */
    --penguin-skin: black;
    --penguin-belly: white;
    --penguin-beak: orange;


    height: 500px;
    width: 500px;
    /* background-color: white; */
    margin: auto;
    margin-top: 30px;
    position: relative;
    display: block;
}
.penguin * {
    position: absolute;
  }
.penguin-top{
    top: 10%;
    left: 25%;
    background:var(--penguin-skin, black);
    width: 50%;
    height: 43%;
    border-radius: 120px 120px 100px 100px;
}
.penguin-bottom{
    width: 53%;
    height: 45%;
    background-color:var(--penguin-skin, black);
    top: 40%;
    left: 23.5%;
    border-radius: 100px 100px 120px 120px;
}
.right-hand{
    top: 0%;
    left: -20%;
    background:var(--penguin-skin, black);
    height: 60%;
    width: 30%;
    border-radius: 60px 60px 120px 20px;
    transform: rotate(50deg);
    z-index: -1;
}
.left-hand{
    background:var(--penguin-skin, black);
    height: 60%;
    width: 30%;
    top: 0%;
    left: 90%;
    transform: rotate(-50deg);
    border-radius: 60px 60px 20px 120px;
    z-index: -1;
}
.right-feet{
    height:25%;
    width: 40%;
    background: var(--penguin-beak, orange);
    top: 89%;
    left: 10%;
    border-radius: 50% 50% 50% 50%;
    z-index: -1;
    transform: rotate(-35deg);
}
.left-feet{
    height: 25%;
    width: 40%;
    background: var(--penguin-beak, orange);
    top: 89%;
    left: 60%;
    border-radius: 50% 50% 50% 50%;
    transform: rotate(35deg);
    z-index: -1;
}
.right-cheek{
    height: 80%;
    width: 48%;
    background:var(--penguin-belly, white);
    top: 10%;
    left: 10%;
    border-radius: 120px 120px 100px 100px;
    z-index: 5;
}
.left-cheek{
    height: 80%;
    width: 48%;
    background: var(--penguin-belly, white);
    top: 10%;
    left: 43%;
    border-radius: 120px 120px 100px 100px;
    z-index: 5;
}
.belly{
    height: 80%;
    width: 90%;
    background: var(--penguin-belly, white);
    top: 10%;
    left: 5%;
    border-radius: 40%  40% 40% 40%;
}
.left-eye{
    height: 20%;
    width: 20%;
    background: black;
    top: 38%;
    left: 22%;
    z-index: 10;
    border-radius: 50%;
}
.right-eye{
    height: 20%;
    width: 20%;
    background: black;
    top: 38%;
    left: 59%;
    z-index: 10;
    border-radius: 50%;
}
.sparkle{
    top: 25%;
    left: 15%;
    background: white;
    width: 35%;
    height: 35%;
    border-radius: 50%;
}
.blush-left{
    height: 14%;
    width: 17%;
    background: pink;
    top: 63%;
    z-index: 20;
    left: 15%;
    border-radius: 50%;
}
.blush-right{
    height: 14%;
    width: 17%;
    background: pink;
    top: 63%;
    z-index: 20;
    left: 70%;
    border-radius: 50%;
}
.beak-top{
    height: 9%;
    width: 21%;
    background: var(--penguin-beak, orange);
    z-index: 20;
    top: 68%;
    left: 41%;
    border-radius: 50%;
}
.beak-bottom{
    height: 13%;
    width: 16%;
    background: var(--penguin-beak, orange);
    z-index: 20;
    top: 71.5%;
    left: 43.5%;
    border-radius: 50%;
}