* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #afc2dc;
}

.circle {
    width: 200px;
    height: 200px;
    background-color: #FF9A8B;
    background-image: linear-gradient(49deg, #FF9A8B 0%, #FF6A88 27%, #FF99AC 49%, #fbd5d5 75%, #f7e7e1 100%);
    border-radius: 50%;
    align-content: center;
    margin-bottom: 10px;
    transition: all 0.5s ease-in;
}

.square {
    border-radius: unset;

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

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