@import url('https://fonts.googleapis.com/css2?family=Chivo+Mono:ital,wght@0,100..900;1,100..900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-snap-type: y mandatory; overflow-y: scroll; font-family: chivo mono;}

:root {
  --main-text-color: #000000;
  --secondary-text-color: #f0ebe9;
  --background-color: #1c1b1b;
  --highlight-color: #ed591a;
}

body {
    background: var(--background-color);
    color: var(--main-text-color);
    }

section {
    height: 100vh;
    scroll-snap-align: start;
    padding: 0.5%;
    }

h1 {
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--secondary-text-color);
    }

p {
    font-family: chivo mono;
    font-size: .8rem;
    line-height: 1.2rem;
    color: var(--secondary-text-color);
    }
    
a {
    text-decoration: underline;
    font-size: .8rem;
    color: var(--secondary-text-color);
    font-family: inherit;
    }

a:hover,
a:active {
  background-color: var(--highlight-color);
  text-decoration: none;
}
