@keyframes progressbar {
  0% {
    transform: translateX(-75%);
  }

  100% {
    transform: translateX(225%);
  }
}

:root {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  color: #0d1117;
}

.container {
  display: flex;
  align-items: start;
  justify-content: center;
  min-height: 100vh;
  padding: 2em 2em;
}

.loading {
  width: 100%;
  border-radius: 9999px;
  height: 4px;
  background: #f3f3f3;
  overflow: hidden;
}

.loading__bar {
  border-radius: 9999px;
  height: 100%;
  width: 40%;
  transform-origin: center;
  background: hotpink;
  animation: progressbar 1s ease-in-out alternate infinite;
}
.sitehead {
  width: 12rem;
}
h1 {
  font-weight: lighter;
  font-size: 3.2rem;
  line-height: 110%;
  margin-bottom: 1em;
  text-wrap: break-word;
}
h2 {
  font-size: 2.2rem;
}
.smaller {
  font-size: 50%;
  line-height: 100%;
}
ul,
ol {
  padding: 2rem 0;
  margin: 1rem 0;
}
p,
ul,
li,
ol {
  font-weight: lighter;
  font-size: 1.2rem;
  line-height: 140%;
  margin-bottom: 2rem;
}
li {
  list-style-type: "→ ";
}
.tag {
  background-color: lightgrey;
  color: white;
  border-radius: 2px;
  padding: 0.2rem 1rem;
  font-size: 75%;
  font-weight: bold;
}
.update {
  background-color: hotpink;
}

a {
  color: hotpink;
}

body {
  background-color: #fdfdfd;
}

.buttonlist ul,
ol {
  display: flex;
  align-content: start;
  flex-grow: 1;
  flex-shrink: 0;
  direction: row;
  width: 100%;
}
.buttonlist li {
  background-color: lightgrey;
  border: 0.2em lightpink solid;
  border-radius: 0.4em;
  padding: 1em 2em;
  width: 80%;
  list-style-type: none;
  list-style-position: 0;
}
.buttonlist li.recommended {
  background-color: hotpink;
  border: 0.2em lightpink solid;
  color: white;
}
.buttonlist li .tag {
  background-color: darkgray;
  color: black;
}
.buttonlist li.recommended .tag {
  background-color: yellow;
  color: black;
}
.buttonlist a,
.buttonlist a:active,
.buttonlist a:hover,
.buttonlist a:visited {
  color: black;
  text-decoration: none;
}
.buttonlist a > .recommended,
.buttonlist a:active > .recommended,
.buttonlist a:hover > .recommended,
.buttonlist a:visited > .recommended {
  color: white;
  text-decoration: none;
}
.buttonlist a:active > li,
.buttonlist a:hover > li {
  border-color: grey;
}
.buttonlist a:active > .recommended,
.buttonlist a:hover > .recommended {
  border-color: yellow;
}