/* **********************************************************
 * 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=Quicksand:wght@300..700&display=swap');
/* basic sans */
@import url("https://use.typekit.net/ixp7wky.css");
/* arboria */
@import url("https://use.typekit.net/ixp7wky.css");
/* html {
    font-family: 'Quicksand', 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;
    box-sizing: border-box;
}

body {
    /* font-family: "elza-text", sans-serif;
    font-weight: 400;
    font-style: normal; */
    background-color: var(--color-bg);
    /* color: var(--color-fg); */
    color: rgb(79, 79, 79);
}

header {

    font-family: "basic-sans", sans-serif;
    font-weight: 600;
    font-style: normal;
    
}
footer {

    font-family: "basic-sans", sans-serif;
    font-weight: 600;
    font-style: normal;
    
}





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