* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@font-face {
	font-family: 'Pretendard';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Thin.woff2') format('woff2');
	font-weight: 100;
	font-display: swap;
}

@font-face {
	font-family: 'Pretendard';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraLight.woff2') format('woff2');
	font-weight: 200;
	font-display: swap;
}

@font-face {
	font-family: 'Pretendard';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Light.woff2') format('woff2');
	font-weight: 300;
	font-display: swap;
}

@font-face {
	font-family: 'Pretendard';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Regular.woff2') format('woff2');
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: 'Pretendard';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Medium.woff2') format('woff2');
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: 'Pretendard';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-SemiBold.woff2') format('woff2');
	font-weight: 600;
	font-display: swap;
}

@font-face {
	font-family: 'Pretendard';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Bold.woff2') format('woff2');
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: 'Pretendard';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-ExtraBold.woff2') format('woff2');
	font-weight: 800;
	font-display: swap;
}

@font-face {
	font-family: 'Pretendard';
	src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/pretendard@1.0/Pretendard-Black.woff2') format('woff2');
	font-weight: 900;
	font-display: swap;
}

:root {
	--black: #181818;
	--begie: #fff7ee;
	--white: #fff;
}

body {
	font-family: 'Pretendard';
	background-color: var(--begie);
}

main {
	position: relative;
	z-index: 2;
	margin-bottom: 400px;
}

section {
	height: 100vh;
	background-color: var(--begie);
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 40px;
}

section span {
	font-size: 4vw;
	font-weight: 600;
	text-transform: uppercase;
}

footer {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	height: 400px;
	background-color: var(--black);
	padding: 40px 20px;
}

.footer__top {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 24px;
}

.footer__top h3 {
	font-size: 2rem;
	font-weight: 500;
	color: var(--begie);
	margin: 0;
}

.footer__top nav {
	display: flex;
	align-items: center;
}

.footer__top ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	gap: 24px;
}

.footer__top li {
	margin: 0;
}

.footer__top a {
	text-decoration: none;
	color: var(--begie);
	font-size: 1.1rem;
	font-weight: 600;
	transition: color 0.2s;
}

.footer__top a:hover {
	color: var(--white);
}

.footer__mid {
	color: var(--begie);
	width: 100%;
	height: 100%;
	margin-bottom: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer__mid span {
	display: inline-block;
	width: 100%;
	text-align: center;
	font-size: clamp(2rem, 12vw, 10rem);
	line-height: 1;
	letter-spacing: -0.05em;
}

.footer__bottom {
	width: 100%;
	text-align: center;
	color: var(--begie);
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: auto;
}
