@charset 'UTF-8';

/*기본폰트*/
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html, body {
	scroll-behavior: smooth;
	font-family: "DM Sans";
}

/* flex 관련 */
.d-flex {
	display: flex;
}
.items-flex-end {
	align-items: flex-end;
}
.justify-space-between {
	justify-content: space-between;
}
.direction-column {
	flex-direction: column;
}
.direction-row {
	flex-direction: row;
}
/* flex 관련 */

.non-astyle {
	color: unset;
	text-decoration: none;
}
