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

@import "../default.css";
@import "layout.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://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');


html {
    font-family: 'Inter', sans-serif;
}

html{
    font-family: "Raleway";
}


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


body {
    background-color: var(--color-white);
    color: var(--color-black);
    font-size: 20px;
    font-weight: 400;
}


a {
    color: var(--color-0);
}

a:hover {
    color: var(--color-5);
    text-decoration-color: transparent;
}

p>a {
    color: inherit;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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