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

.circle {
    width: 200px;
    height: 200px;
    background: cornflowerblue;
    border-radius: 50%;
    align-content: center;
    text-align: center;
    margin-bottom: 10px;
    transition: all 0.5s ease-in;
    transform-origin: center;
}

.square {
    border-radius: unset;
    background: palevioletred;
}

.circle.move-me {
    transform: rotate(45deg) translateX(400px) scale(1.3);
}


