@font-face {
	font-family: 'BookkMyungjo-Bd';
	src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2302@1.0/BookkMyungjo-Bd.woff2')
		format('woff2');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'BookkMyungjo-Bd';
	src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2302@1.0/BookkMyungjo-Bd.woff2')
		format('woff2');
	font-weight: 400;
	font-style: normal;
}

html {
	font-family: BookkMyungjo-Bd;
	font-weight: 400;
}

.modal {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

::backdrop {
	opacity: 0.9;
}

.draggable {
	position: relative;
	cursor: grab;
	user-select: none;
	touch-action: none; /* 터치 스크롤 방지 */
}

.share-button {
	color: black;
}
/* 로고 확대 애니메이션 */
@keyframes zoomOut {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(5);
		opacity: 0;
	}
}

.logo-zoom-animation {
	animation: zoomOut 0.8s ease-in forwards;
}
