@media (min-width: 1313px) {
  :root {
    --device: "desktop";
  }
}
@media (max-width: 1312px) {
  :root {
    --device: "laptop";
  }
}
@media (max-width: 992px) {
  :root {
    --device: "tablet";
  }
}
@media (max-width: 688px) {
  :root {
    --device: "phone";
  }
}
:root {
  --bg: #201c1b;
  --fg: #e9e6d4;
  --fx: #433c3c;
  --white: #fff;
}

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

img {
  display: block;
  width: 100%;
}

body {
  background-color: var(--bg);
  color: var(--fg);
}

html {
  font-family: "JetBrains Mono", monospace;
  line-height: 1.6em;
  font-weight: 300;
  font-kerning: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: var(--black);
}

p {
  font-size: 100%;
  font-weight: 400;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--fg);
  border-bottom: 1px solid var(--fg);
}
a:hover {
  color: var(--white);
}

@media (min-width: 1313px) {
  html {
    font-size: 130%;
  }
}
@media (max-width: 1312px) {
  html {
    font-size: 120%;
  }
}
@media (max-width: 992px) {
  html {
    font-size: 110%;
  }
}
@media (max-width: 688px) {
  html {
    font-size: 100%;
  }
}
section.column {
  margin: auto;
  padding: 0em 4em;
}
section.column p {
  max-width: 960px;
}

@media (max-width: 992px) {
  section.column {
    padding: 0em 3em;
  }
}
@media (max-width: 688px) {
  section.column {
    padding: 0em 1.5em;
  }
}
nav {
  display: flex;
  list-style-type: none;
  align-self: center;
}
nav li {
  padding-right: 1em;
}

article {
  padding: 5em 0em;
}
