:root {
  --green: #009f6b;
  --black: #000;
  --platinum: #eae6e5;
  --black-coral: #5e6472;
  --black-coral-23: #5e647223;
  --fire-opal: #e85f5c;
  --yellow: #ffd700;
  --orange: #ffa500;
  --purple: #800080;
  --light-blue: #add8e6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "Fira Code", monospace;
}

header {
  color: var(--platinum);
  font-weight: bold;
}

section {
  color: var(--black);
  text-align: center;
}

p {
  color: var(--platinum);
  max-width: 80%;
}

a.link-but-intended-to-be-styled {
  color: var(--platinum);
  border-radius: 0.5rem;
  padding: 0.1rem 0.3rem 0.1rem 0.3rem;
  line-height: 1.5rem;
}

a.link-but-intended-to-be-styled:link {
  text-decoration: none;
  border-bottom: 0.2rem inset var(--green);
}

a.link-but-intended-to-be-styled:visited {
  color: var(--black-coral);
}

a.link-but-intended-to-be-styled:visited:hover {
  background-color: var(--black-coral);
  color: var(--platinum);
}

a.link-but-intended-to-be-styled:hover {
  background-color: var(--green);
}

a.link-but-intended-to-be-styled:active {
  color: var(--green);
}

a.link-but-intended-to-be-styled:focus {
  background-color: var(--fire-opal);
}

.item-container {
  display: grid;
  vertical-align: middle;
  grid-template-columns: 0.5fr 0.5fr 0.5fr 0.5fr 0.5fr 0.5fr;
  --column-width-min: 8em;
}

.attribute-container {
  border: 0.1em solid var(--black);
  border-radius: 0.5em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--column-width-min), 1fr));
}

.top-row {
  background-color: var(--light-blue);
  font-weight: bold;
  padding-top: 2em;
  padding-bottom: 2em;
}

.rfgf33 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.gray {
  background-color: var(--black-coral);
  font-weight: bold;
}

.green {
  background-color: var(--green);
}

.yellow {
  background-color: var(--yellow);
}

.orange {
  background-color: var(--orange);
}

.red {
  background-color: var(--fire-opal);
}

.purple {
  background-color: var(--purple);
}

#no-border {
  text-decoration: none;
  border-bottom: none;
}
