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

.circle {
    width: 200px;
    height: 200px;
background: rgb(222, 0, 255);
    background: linear-gradient(90deg, rgba(222, 0, 255, 1) 0%, rgba(126, 11, 179, 1) 48%, rgba(0, 112, 255, 1) 100%);
    border-radius: 50%;
    text-align: center;
    align-content: center;
    margin-bottom: 10px;
    transition: all 0.5s ease-in;
    transform-origin: center;
}
.square{
    border-radius: unset;
}

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

.circle.make-round {
    border-radius: 50%;
    background:rgb(222, 0, 255)
}

