/* =========================
   Base Reset
========================= */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
	line-height: 1.4;
	color: #191919;
	background: #fff;
}

/* =========================
   Text
========================= */

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	font-weight: inherit;
}

a {
	color: inherit;
	text-decoration: none;
}

/* =========================
   List
========================= */

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* =========================
   Media
========================= */

img,
video {
	display: block;
	max-width: 100%;
}

/* =========================
   Form
========================= */

button {
	border: none;
	background: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
}

input,
textarea,
select {
	font: inherit;
	margin: 0;
	border: none;
	outline: none;
	background: transparent;
}

select {
	appearance: none;
}

/* =========================
   Table
========================= */

table {
	border-collapse: collapse;
	border-spacing: 0;
}
