@import url('https://fonts.googleapis.com/css?family=Comic+Neue&display=swap');
:root {
  --primary-color: rgb(81, 81, 81);
  --secondary-color: rgb(61, 61, 61);
  --primary-text-color: white;
  --secondary-text-color: white;
  --section-label-color: white;
  --content-title-color: blueviolet;
  --link-color: slateblue;
  --external-link-color: magenta;
  font-family: "Comic Neue", sans-serif;
  font-size: 18px;
}
@media screen and (orientation: portrait) {
  :root {
    font-size: 14px;
  }
}