@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

html,
body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	font-weight: 500;
	line-height: 1.5;
}

html {
	font-size: 10px;
	overflow-y: scroll;
	overflow-x: hidden;
}

body {
	color: #232323;
	font-family: 'Noto Sans KR';
	font-weight: 500;
}

* {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	/* color: #004863; */
}

ul,
ul li {
	list-style: none;
}

img,
fieldset,
iframe {
	border: 0 none;
}

form legend,
fieldset legend,
hr {
	display: none;
}

em,
address {
	font-style: normal;
}

table {
	width: 100%;
	table-layout: fixed;
}

table caption {
	display: none;
}

table th {
	text-align: center;
}

button {
	border: 0;
}

h1,
h2,
h3,
h4,
h5 {
	font-weight: normal;
}

strong {
	font-weight: 800;
}

/* layout */
.body {
	background: #121212;
	color: #fff;
	height: 100%;
	display: flex;
	flex-direction: column;
	max-width: 750px;
	margin: 0 auto;
	overflow-y: auto;
}

.wrap {
	max-width: 750px;
	width: 100%;
	margin: 0 auto;
	padding: 0 2rem;
	box-sizing: border-box;
}

.link-wrap a img,
.footer-img {
	max-width: 100%;
	display: block;
	margin: 0 auto;
}

/* header */
header {
	background: url('../img/header-bg.png') top center no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 30px 2rem !important;
	text-align: center;
}

.header-txt {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.header-sns {
	display: flex;
	gap: 10px;
	justify-content: center;
}

h1 {
	font-size: 2.8rem;
	font-weight: 600;
}

.h1_under {
	font-size: 2.2rem;
	font-weight: 400;
}


/* link-wrap */
.link-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	font-size: 2rem;
	margin: 35px 2rem 60px;
	justify-content: center;
}
.link-wrap a {
	flex: 0 0 100px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: center;
	align-items: center;
}
.link-wrap a img {
	display: block;
	width: 100%;
	max-width: 94px;
	text-align: center;
}



/* footer */
footer {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 1.9rem;
	text-align: center;
}
.footer-text {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 10px;
}


/* resposive */
@media all and (max-width: 670px) {
	.link-wrap {justify-content: flex-start;}
	.link-wrap a {flex: 0 0 calc(33% - 19px);}
}
@media all and (max-width: 380px) {
	html {font-size: 8px;}
}
