@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400-900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@400;500;600;700;800;900&display=swap');

:root {
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Kanit", "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #171614;
    color: #ccc;
}

h1 {
    margin: 0;
    padding: 0;
    font-size: clamp(2rem, 6vw, 8rem);
    font-weight: 700;
    text-transform: uppercase;
}