:root {
  --title-color: #501c1b;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url(/fonts/BarlowCondensed-Regular.ttf);
}

@font-face {
  font-family: "Barlow Condensed";
  src: url(/fonts/BarlowCondensed-Bold.ttf);
  font-weight: bold;
}

@font-face {
  font-family: "Open Sans";
  src: url(/fonts/OpenSans-VariableFont_wdth,wght.ttf);
}

@font-face {
  font-family: "Open Sans";
  src: url(/fonts/OpenSans-Italic-VariableFont_wdth,wght.ttf);
  font-style: italic;
}

/* Phosphor icons are pale and slightly offest */
i.ph {
  color: darkgray;
  vertical-align: -2px;
}

/* Links are title-red when hovered; names additionally get an underline. */
a {
  color: black;
  text-decoration: none;
}
a:hover, a:active {
  color: var(--title-color);
}
a:hover>strong, a:active>strong, nav a:hover, nav a:active {
  text-decoration: underline;
}
a:hover>i, a:active>i {
  color: var(--title-color);
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: sans-serif;
}

.titles h1, .titles h2 {
  text-transform: uppercase;
  font-family: "Barlow Condensed";
  color: var(--title-color);
}
.titles h1 {
  font-weight: bold;
}
.titles h2 {
  font-weight: normal;
}