/* **********************************************************
 * 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://fonts.googleapis.com/css2?family=Forum&family=Geist+Mono:wght@100..900&family=Space+Grotesk:wght@300..700&display=swap');


html {
    /* font-family: 'Geist Mono', serif; */
    overflow-x: hidden;
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-size: 16px;
    
}

::selection {
    color: red;
    background: rgb(226, 226, 1);
  }
/* **********************************************************
 * Customizing
 *
 * changes to default settings like colors, typography,
 * spacing can be made in default.css
 *
 * other custom settings, start below
 *
 * ********************************************************** */

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

body {
    background-color: var(--color-bg);
    color: var(--color-fg);
    /* font-family: "Geist Mono", serif; */
    font-family: "Space Grotesk", sans-serif;
    
    
   
}


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