*{
    padding: 0;
    margin:0
    box-sizing border-box;


}
body {
    background: blue;
    font-family: Arial, Helvetica, sans-serif;
}

#pacman {
    width: 0px;
    height: 0px;
    border-right: 60px solid transparent;
    border-top: 60px solid red;
    border-left: 60px solid red;
    border-bottom: 60px solid red;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    transition: all 0.5s ease-in;
    

  }


#pacman.change-me{
    border-left: 100px solid blue;
    /* translate: 200px; */
    transform: translateX(200px) translateY(400px) rotate(20deg) scale(2.5);
}