/* hub_base.css */
/* 전역 최소 리셋 */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* a 태그 기본 스타일 제거 */
a {
  color: inherit;
  text-decoration: none;
}
