*예제 코드1 (스스로 해석 해보기) .welcome-header{ margin-top:57px; text-align: center; display: flex; flex-direction: column; align-items: center; font-weight: 800; } .welcome-header__title { margin-bottom:18px; } .welcome-header__text { margin-bottom:57px; width: 50%; opacity: 0.7;} 1. margin : white 화면 공백 자체의 가장 큰 가장자리 2. align -items:center; > 가장자리에 오는 이유는 'flex-direction' 3. display : flex; 를 사용하는 이유 > ..