@import "./normalize.css";

@import url("https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

:root {
    --site-bg: #202426;
    --site-bg: #f5f5f5;
    --site-fg: #323232;

    --header-height: 100px;

    --menu-bg: #8c8c88;
    --menu-bg: #9da65d;
    --menu-bg: #1d1d1d;
    --menu-fg: #f2f2f2;

    --site-primary-fg: #555;
    --site-primary-bg: #000;
}

html {
    background-color: #fff;
    color: #454545;
    font-family: "Sarabun", sans-serif;
    font-size: 137.5%;
    -webkit-font-smoothing: antialiased;
}

html,
body {
    margin: 0;
    padding: 0;
    color: #303030;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    min-height: 100vh;

    main {
        flex-grow: 1;
    }
}