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

body{
    background-color: antiquewhite;
}

.circle{
    width: 200px;
    height: 200px;
    background: rgb(180,58,77);
    background: linear-gradient(90deg, rgba(180,58,77,1) 0%, rgba(172,30,103,0.9036827195467422) 50%, rgba(208,128,171,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;
    background: rgb(165,162,222);
background: linear-gradient(90deg, rgba(165,162,222,1) 38%, rgba(0,212,255,1) 100%);
}

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

.circle.make-round{
    border-radius: 50%;
}