/* **********************************************************
 * add custom styles after imports below
 * ********************************************************** */

@import "default.css";
@import "layout.css";
@import "menu.css";
@import "queries.css";

/* **********************************************************
 * to import a font, use the @import option, you can find
 * lots of font options at fonts.google.com for example.
 * ********************************************************** */

@import url('https://rsms.me/inter/inter.css');
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
@import url('https://fonts.googleapis.com/css2?family=TikTok+Sans:opsz,wght@12..36,300..900&family=VT323&display=swap');


html {
    font-family: "TikTok Sans", sans-serif;
}


/* **********************************************************
 * Customizing
 *
 * changes to default settings like colors, typography,
 * spacing can be made in default.css
 *
 * other custom settings, start below
 *
 * ********************************************************** */

* {
    line-height: 115%;
    font-weight: 400;
}

body {
    background-color: var(--color-bg);
    color: var(--color-0);
}

body p {
    line-height: 150%;
    font-size: 1rem;
}

body p a {
    font-family: VT323;
    font-size: 1.25rem;
    color: blue;
    text-decoration: underline;
}

body p a:hover {
    color: white;
    background-color: blue;
    text-decoration: underline;
}

body b {
    font-weight: 700;
    color: blue;
}

body i {
    color: blue;
}

.repo a {
    /* background-color: red; */
    font-size: 1rem;
}


@media (orientation: portrait) {
    * {
        font-size: 16px;
    }

    body b {
        font-size: 16px;
    }

    body i {
        font-size: 16px;
    }
}