576px일 때는 container 클래스의 기준 너비를 바꾸는 것 말고 다른 처리는 하지 않습니다.
13/end/css/media.css - 해상도 576px 이하일 때
@media screen and (max-width:576px){
(중략)
main .container{
width:400px; /* 576px -> 400px */
}
section .container{
width:360px; /* 400px -> 360px */
}
}