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

.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: aqua;
    text-align: center;
    align-content: center;
    font-weight: bolder;
    margin-bottom: 30px;
    transition: all 0.5s ease-in;
}
.circle.square {
    border-radius: unset;
}
.circle.square.make-round {
    border-radius: 50%;
    transform: translateX(300px) rotate(15deg) scale(1.5);
}

.circle.move-me{
    transform: translateX(300px) rotate(15deg) scale(1.5);
}
/* .square {
    border-radius: unset !important;
}*/