﻿@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
	html,
	body {
		margin: 0;
		padding: 0;
		min-height: 100%;
		background: #020617;
		color: #f8fafc;
		font-family: "Inter", "Pretendard", "Noto Sans KR", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	}

	* {
		box-sizing: border-box;
	}
}

