@font-face {
    font-family: "CustomFont";
    src: url("/assets/fonts/customFont.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "CustomJapaneseFont";
    src: url("/assets/fonts/customJapaneseFont.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

:root {
    --font-base: "CustomFont", monospace;
    --font-japanese: "CustomJapaneseFont", "CustomFont", monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    min-height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-base);
}
