CSS 변환이 가진 능력 - transform

rotate

section:first-of-type h1:nth-of-type(1){
    transform-origin: top right;
    transform: rotate(45deg);
}

scale

section:first-of-type h1:nth-of-type(2){
    transform: scale(0.6);
    transform: scale(2,1);
}

translate(moving)

section:first-of-type h1:nth-of-type(3){
    transform: translateX(200px);
}
section:first-of-type h1:nth-of-type(4){
    transform: translate(-100px, 50px);
}