html, body {
    height: 100%;
    font-family: 'Noto Sans KR', sans-serif;
}

.scrollbar-thin {
    scrollbar-width: thin;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.animate-fade-in {
    animation: fadeIn 0.3s ease-in-out;
}