body {
	color: var(--fg);
	background-color: var(--bg);
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}
.bug {
	offset-path: url(#path7);
	offset-anchor: auto;
	animation: move 10s linear infinite;
	opacity: 0;
}

@keyframes move {
	from {
		offset-distance: 0%;
		opacity: 0;
		transform: scale(120%);
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
		transform: scale(50%);
	}
	to {
		offset-distance: 100%;
		opacity: 0;
		transform: scale(200%);
	}
}
@keyframes appear {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}	
}
.appear {
	opacity: 0;
	animation: appear 1s ease-in forwards;
}
.content {
	max-width: 1000px;
	margin: 0 auto;
	flex-grow: 1;
	padding: 50px 20px 0 20px;
}
* {
	font-family: 'Noto Sans KR', 'Noto Sans';
}
a {
	text-decoration: none;
	color: inherit;
	font-family: inherit;
}
a:hover {
	text-decoration: underline;
}

.gnb {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 60px;
	display: flex;
	flex-direction: row;
	align-items: center;
	background-color: var(--bga);
	backdrop-filter: blur(10px);
	padding: 0 30px;
	gap: 40px;	
}

.gnb-logo {
	font-family: Alata;
	font-size: 20px;
	flex-grow: 1;
}

.gnb-menu {
	display: flex;
	gap: 40px;
	flex-direction: row;
}

.gnb-item {
	font-size: 14px;
}

.home-text {
	top: -550px;
	left: calc(100% - 500px);
	position: relative;
	width:500px;
	text-align: center;
	height: 0;	
}
.gnb-hamburger {
	display: none;
	font-size: 30px;
	margin-top: -8px;
}
.body {
	padding: 0 30px;
}

@media (min-width: 576px) and (max-width: 768px) {
	.gnb-hamburger {
		display: block;
	}
	.gnb-menu {
		display: none;
		position: absolute;
		background-color: var(--bg);
		top: 60px;
		width: 100%;
		left: 0;
	}
	.gnb-item {
		padding: 10px 30px;
	}

	.home-text {
		position: absolute;
		top: 100px;
		width: 60%;
		left: 40%;
		font-size: 1.8vw;
		right: 0;
	}
}
@media (max-width: 576px) {
	.gnb-hamburger {
		display: block;
	}
	.gnb-menu {
		display: none;
		position: absolute;
		background-color: var(--bg);
		top: 60px;
		width: 100%;
		left: 0;
	}
	.gnb-item {
		padding: 10px 30px;
	}

	.home-text {
		left: 0;
		top: 0;
		width: 100%;
		font-size: 2vw;
		height: auto;
	}
}
