/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* ============ FONT ============ */
@font-face {
  font-family: 'Iosevka';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/iosevka@latest/latin-400-normal.woff2) format('woff2'),
       url(https://cdn.jsdelivr.net/fontsource/fonts/iosevka@latest/latin-400-normal.woff) format('woff');
}

/* ============ GLOBAL STYLES ============ */
html {
  height: 100%;             /* stretch full viewport height */
  box-sizing: border-box;
  /* margin: 0; */
  /* display: flex;            /* enable flexbox */ */
  /* flex-direction: column;   /* stack header, main, footer vertically */ */
}

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

body {
  position: relative;
  margin: 0;
  padding-bottom: 6rem;
  /* display: flex; */
  /* flex-direction: column; */
  min-height: 100%;
  /* background-color: gray; */
  /* color: black; */
  font-family: 'Iosevka', monospace;
}

main {
  /* flex: 1; */
  padding: 1em;
}
