@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --background: #000000;
  --foreground: #ffffff;

  --color-background: var(--background);
  --color-foreground: var(--foreground);

  --font-sans: 'Noto Sans KR', sans-serif;
  --font-mono: 'Courier New', monospace; /* 커스텀 가능 */
}

html, body {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

body {
  background: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-sans);

  text-align: center;           /* 모든 텍스트 중앙 정렬 */
  margin: 0;                    /* 기본 마진 제거 */
  padding: 0;
  line-height: 1.5;
}

.center-wrapper {
  display: flex;
  flex-direction: column;     /* 위아래 정렬 */
  justify-content: center;    /* 수직 정렬 */
  align-items: center;        /* 수평 정렬 */
  height: 100vh;              /* 화면 전체 높이 */
  text-align: center;
}

/* 2. 기본 폰트 설정: 한글, 숫자 포함 */
body {
  font-family: 'Noto Sans KR', sans-serif;
}

/* 3. 영어만 Gamay로 오버라이드 */
body *:lang(en) {
  /* font-family: 'gamay-editional', sans-serif; */
  text-align: center;
}

/* 4. 버튼 스타일 */
.custom-button {
  /* width: 150px; */
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 20px;
  font-size: 16px;
  font-family: 'Noto Sans KR', sans-serif;
  cursor: pointer;
  text-align: center;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 10px;
}
/* 5. 버튼 호버 스타일 */
.custom-button:hover {
  background-color: #ffffff;
  color: #000000;
}
