:root {
  font-family: 'Roboto Flex', sans-serif;
  font-optical-sizing: auto;
  font-variation-settings:
    "slnt" 0,
    "wdth" 80;
}

html {
  /* --color-cyan: #11e09f; */
  --color-hl: #52adff;
  /* --color-purple: #bf00fe; */
  --color-bg: #222222;
  --color-fg: #eeeeee;

  /* Rules */
  scroll-behavior: smooth;
  color: var(--color-fg);
  background: var(--color-bg);
  margin: 0;
  padding: 0;
  text-align: left;
  box-sizing: border-box;
}

@media (prefers-color-scheme: light) {
  html {
    --color-bg: #eeeeee;
    --color-fg: #222222;
    --color-hl: #2669a6;
  }

  img {
    filter: none;
  }
}

body {
  margin: 3rem;
  padding: 0;
}

div#content {
  width: 45vw;
}

h1 {
  font-weight: 200;
  font-size: 6em;
  font-family: 'Roboto Flex', sans-serif;
  font-optical-sizing: auto;
  font-variation-settings:
    "wdth" 125,
    "YTLC" 570,
    "YTUC" 712;
}

@media screen and (max-width: 1000px) {
  h1 {
    font-size: 3.5em;
  }

  div#content {
    min-width: unset;
    width: 100%;
  }
}

h1 span#name {
  font-weight: 500;
}

ul#icons {
  padding-left: 0;
}

ul#icons>li {
  display: inline;
  marker: none;
  margin-right: 10px;
}

ul#icons>li>a {
  text-decoration: none;
  display: inline-block;
}

svg {
  height: 1.2em;
  width: 24px;
  margin-left: -2px;
  margin-bottom: -2px;
}

a {
  color: var(--color-hl);
  text-decoration: none;
  transition: 0.2s all;
}

a:hover,
a:focus {
  background: var(--color-hl);
  color: var(--color-bg);
  border-radius: 3px;
}

h3 {
  margin-top: 30px;
}

li {
  padding-bottom: 10px;
}

p {
  line-height: 1.2;
}

small {
  font-feature-settings: "tnum" 1;
}