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

.circle{
    width: 200px;
    height: 200px;
    background: rgb(238,174,202);
    background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(148,187,233,1) 100%);
    border-radius: 50%;
    text-align: center;
    align-content: center;
    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(148,233,224);
    background: linear-gradient(90deg, rgba(148,233,224,1) 0%, rgba(175,215,217,1) 25%, rgba(238,174,202,1) 100%);;
}

.circle.move-me{
    transform: rotate(45deg) translateX(400px) scale(1.3)
}
.circle.make-round{
    border-radius: 50%;
}