@charset "utf-8";

html { font-size: 16px; }
* { margin: 0; padding: 0; box-sizing: border-box; }
table { border-collapse: collapse; width: 100%; }
ol, li { list-style: none; }
a { color: inherit; text-decoration: none; }
address,em { font-style: normal; }
caption,legend { display: none; }
select,input,fieldset,button { border: 0; outline: none; vertical-align: top; }
img{vertical-align: top; border: 0;}

body{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  overflow: hidden;
  background-color: #000000;
}

/* 태블릿 (1024px 이하) */
@media (max-width: 1024px) {
  html { font-size: 14px; } /* 전체 폰트 93.75% */
}

/* 작은 태블릿/대형 모바일 (765px 이하) */
@media (max-width: 765px) {
  html { font-size: 12px; } /* 전체 폰트 87.5% */
}

/* 모바일 (390px 이하) */
@media (max-width: 390px) {
  html { font-size: 9px; } /* 전체 폰트 78% */
}