/* 공통 스타일 */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* 기본: 모바일 (최대 768px) */
body {
  background: url("../img/main_mo.jpg") no-repeat center center;
  background-size: cover;
}

/* 769px 이상: PC */
@media screen and (min-width: 769px) {
  body {
    background: url("../img/main_pc.jpg") no-repeat center center;
    background-size: cover;
  }
}
