* {
  box-sizing: border-box;
  cursor: url(/static/sock.png) 5 30, auto;  /* source: https://youtu.be/w-_0WYjtxrE?t=153 */
}
a[href], a[href] *, input, label[for], select, button {
  cursor: url(/static/hoversock.png) 5 36, auto; /* source: https://youtu.be/w-_0WYjtxrE?t=95 */
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;

  --text-color: #FFF;
  --background-color: #1C1C1C;
  --limbo-color: black;

  background-color: var(--limbo-color);
  color: var(--text-color);
  font-family: 'Open Sans', sans-serif;
  font-size: 21px;
  line-height: 1.6;
}

body.light {
  --text-color: black;
  --background-color: #FAFAFA;
  --limbo-color: #EBEBEB;
}

@media (min-width: 722px) {
  body {
    font-size: 24px;
  }
}

.content-column {
  width: 100%;
  min-height: 100vh;
  max-width: 768px;
  padding: 0 1.5em;
  margin: 0 auto;
  background-color: var(--background-color);
  position: relative;
}

a {
  color: lawngreen;
}

a:visited {
  color: limegreen;
}

#footer-wrapper {
  text-align: center;
  margin-top: 1em;
}

#copyright-notice {
  display: block;
  margin: 0.6em 0;
  color: #777;
  font-family: "PT Mono", sans-serif;
}

/*h1 {
  position: absolute;
  font-family: 'Open Sans', sans-serif;
  font-size: 40px;
  font-weight: 400;
  width: 100%;
  text-align: center;
  top: calc(50% - 40px / 2);
}

iframe.YTframe {
  width: 1280px;
  height: 720px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}*/