@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/styles/woff2/IBMPlexSans-Regular.woff2") format("woff2"), url("/styles/woff/IBMPlexSans-Regular.woff") format("woff");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: italic;
  font-weight: 400;
  src: url("/styles/woff2/IBMPlexSans-Italic.woff2") format("woff2"), url("/styles/woff/IBMPlexSans-Italic.woff") format("woff");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 700;
  src: url("/styles/woff2/IBMPlexSans-Bold.woff2") format("woff2"), url("/styles/woff/IBMPlexSans-Bold.woff") format("woff");
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: italic;
  font-weight: 700;
  src: url("/styles/woff2/IBMPlexSans-BoldItalic.woff2") format("woff2"), url("/styles/woff/IBMPlexSans-BoldItalic.woff") format("woff");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  src: url("/styles/woff2/IBMPlexMono-Regular.woff2") format("woff2"), url("/styles/woff/IBMPlexMono-Regular.woff") format("woff");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: italic;
  font-weight: 400;
  src: url("/styles/woff2/IBMPlexMono-Italic.woff2") format("woff2"), url("/styles/woff/IBMPlexMono-Italic.woff") format("woff");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 700;
  src: url("/styles/woff2/IBMPlexMono-Bold.woff2") format("woff2"), url("/styles/woff/IBMPlexMono-Bold.woff") format("woff");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: italic;
  font-weight: 700;
  src: url("/styles/woff2/IBMPlexMono-BoldItalic.woff2") format("woff2"), url("/styles/woff/IBMPlexMono-BoldItalic.woff") format("woff");
}

:root {
    --font-color: black;
    --orange--darker: #ef6a49;
    --orange--dark: #f38b71;
    --orange: #f7ac99;
    --orange--light: #fbcdc1;
    --orange--lighter: #fdece8;
}

body {
    font-family: "IBM Plex Sans";
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4vw;
}

code, pre {
    font-family: "IBM Plex Mono";
}

#logo {
    width: 100px;
}

nav {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    gap: 1.5rem 1rem;
}

nav div a {
    text-decoration: none;
    color: var(--font-color);
    background: var(--orange--light);
    border: 1px var(--orange) solid;
    padding: 6px;
    transition: all 0.1s ease-in-out;
}

nav div a:hover {
    background: var(--orange);
    border: 1px var(--orange--dark) solid;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.12) , 1px 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.1s ease-in-out;
}

header {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-around;
}

hr {
  border: none;
  border-top: 2px groove #333;
  color: #333;
  overflow: visible;
  text-align: center;
  height: 5px;
  margin-top: 1.5em;
}

hr::after {
  background: #fff;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46.277' height='15.943' viewBox='0 0 12.244 4.218'%3E%3Cdefs%3E%3Cmarker id='a' markerHeight='4' markerWidth='4' orient='auto-start-reverse' preserveAspectRatio='xMidYMid' refX='0' refY='0' style='overflow:visible' viewBox='0 0 5.324 6.155'%3E%3Cpath d='m5.77 0-8.65 5V-5Z' style='fill:context-stroke;fill-rule:evenodd;stroke:context-stroke;stroke-width:1pt' transform='scale(.5)'/%3E%3C/marker%3E%3C/defs%3E%3Cg transform='translate(-17.68 -11.193)'%3E%3Ccircle cx='19.374' cy='13.717' r='1.43' style='fill:none;stroke:%23333330;stroke-width:.529167;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1'/%3E%3Ccircle cx='28.228' cy='13.717' r='1.43' style='fill:none;stroke:%23333330;stroke-width:.529167;stroke-linecap:round;stroke-dasharray:none;stroke-opacity:1'/%3E%3Cpath d='M20.486 12.816c1.846-1.759 3.844-1.598 5.642-.404' style='fill:none;stroke:%23333330;stroke-width:.529167;stroke-linecap:butt;stroke-linejoin:miter;stroke-dasharray:none;stroke-opacity:1;marker-end:url(%23a)'/%3E%3C/g%3E%3C/svg%3E");
  padding: 0px 4px;
  position: relative;
  top: -12px;
}
