@font-face {
  font-family: "IBM Plex Sans Condensed";
  font-weight: normal;
  src: url("/assets/woff/ibm-plex-sans-condensed.woff2") format("woff2");
}

:root {
  --bg: #f9b921;
  --fg: #000000;
}

body {
  background-color: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Sans Condensed", system-ui, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  font-size: 24px;
  line-height: 1.25;
  margin: 0;
  -webkit-text-size-adjust: none;
  padding: 24px;
  box-sizing: border-box;
}

h1 {
  margin: 0;
  text-align: center;
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

li {
  margin: 8px 0;
}

ul li,
ul li a {
  display: flex;
  align-items: center;
}

ul li img {
  margin-right: 8px;
}

section {
  display: flex;
}

section > img {
  align-self: center;
}

hr {
  margin: 0 20px;
  border: none;
  background-color: var(--fg);
  width: 4px;
}

@media (orientation: portrait) {
  section {
    flex-direction: column;
  }

  hr {
    margin: 20px 0 12px 0;
    height: 4px;
    width: auto;
  }
}
