BEM (Block Element Modifier) 규칙
모든 것이 클래스를 가져야 함.
즉, id와 class로 나눴던 것을 모두 class 로 통일.
<!-- Block component -->
.btn {}
<!-- Element that depends upon the block -->
.btn__price {}
<!-- Modifier that changes the style of the block -->
.btn--orange {}
.btn--big {}