// start -> flex-start로 변경 하라고 한다.
autoprefixer: start value has mixed support, consider using flex-start instead
// 본인 css의 "justify-content: start" 와 "align-items: start" 를 찾아서 변경해주자
// "justify-content: start" 를 하단 css로 변경
justify-content: flex-start
// "align-items: start" 를 하단 css로 변경
align-items: flex-start
// end -> flex-end 변경 하라고 한다.
autoprefixer: end value has mixed support, consider using flex-end instead
// 본인 css의 "justify-content: end" 와 "align-items: end" 를 찾아서 변경해주자
// "justify-content: end" 를 하단 css로 변경
justify-content: flex-end
// "align-items: end" 를 하단 css로 변경
align-items: flex-end