@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-size: 15px;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  min-height: 100vh;
  font-family: "Paperozi", sans-serif;
  /* color: $text-dark; */
  line-height: 1.7;
  /* Subtle dot grid background */
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.06) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  background-color: #d0dde8;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
address,
em,
img,
strong,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
figure,
figcaption,
footer,
header,
menu,
nav,
section,
time,
mark,
video,
textarea,
button,
input,
select {
  margin: 0;
  padding: 0;
  color: #111;
  font-family: "Paperozi", sans-serif;
  vertical-align: baseline;
  box-sizing: border-box;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
strong,
b {
  font-weight: bold;
}
em,
i {
  font-style: normal;
}
span,
em,
b,
u,
i,
time,
mark,
video,
textarea,
button,
strong,
input {
  color: inherit;
}

main,
article,
aside,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}
ol,
ul,
li {
  list-style: none;
}
span,
time,
i,
label,
em {
  display: inline-block;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
fieldset,
img {
  border: 0;
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
}
img {
  display: block;
  max-width: 100%;
}
/* 폼 요소 초기화 */
select,
input,
textarea {
  width: 100%;
  border: 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}
select:focus,
input:focus,
textarea:focus {
  outline: none;
}
textarea {
  display: block;
  resize: none;
}
select {
  -moz-appearance: none;
  appearance: none;
}
/* 버튼 요소 초기화 */
button {
  overflow: visible;
  display: block;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  text-align: left;
  box-shadow: none;
  cursor: pointer;
}
button:focus {
  outline: none;
}
/* input, textarea 비활성화/읽기전용 대응 (iOS 이슈 포함) */
input:disabled,
textarea:disabled,
input:read-only,
textarea:read-only {
  opacity: 1;
  -webkit-text-fill-color: inherit;
  -webkit-appearance: none;
}
/* input spin 버튼 제거 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
/* 검색창 X 버튼 제거 */
input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}
/* 스크롤 부드럽게 */
html {
  scroll-behavior: smooth;
}
