* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    background-color: yellow;
    font-family: Arial, Helvetica, sans-serif;
}

#circle {
    width: 100px;
    height: 100px;
    background: red;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
}

#circle.change-me{
    background: blue;
    /* translate: 300px; */
    transform: translateX(300px) translateY(200px) rotate(33deg) scale(2.4) skewX(20deg);
}