html {
    scroll-padding-top: 4rem;
}
article {
    width: calc(100% - var(--fixedWidth) * 2);
}
article section {
  padding: 0;
}
table {
    border-collapse: collapse;
    width: 85%;
    font-size: .9rem;
    border: none;
    margin: 2rem 0 0 0;
}
tr:nth-of-type(odd):not(:first-of-type) {
    background-color: #eee;
}
th {
  background-color: var(--neutral);
  color: #fff;
  font-size: 1.5rem;
  padding: 0.25rem;
  text-align: left;
}
thead {
  position: sticky;
  top: 0;
  z-index: 1;
}
td {
    padding: 0.55rem 0;
}
td:first-of-type {
  padding-left: .5rem;
}
td:nth-of-type(2) {
  text-align: left;
}
.dash {
  text-align: center;
}
th:nth-of-type(2),
th:nth-of-type(3) {
    text-align: center;
}
th[colspan="3"] {
  position: relative;
  height: 4rem;
  text-align: center;
}
th[colspan="3"] span {
    border: 3px solid white;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: inline-block;
    line-height: 1.1;
}
.thispage {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.thispage ul {
  list-style-type: none;
  columns: 4 1rem;
  background-color: var(--neutral);
}
.thispage li {
    padding-left: 1rem;
    line-height: 1;
    padding-bottom: 0;
}
.thispage ::marker,
li:has(a):hover::marker {
  content: "";
}
.thispage a {
  color: white;
  text-decoration: none;
  padding: .4rem;
  display: block;
}
.topofpage {
     position: fixed;
     bottom: 1rem;
     right: 1rem;
}
.topofpage a {
     color: var(--main);
     text-decoration: none;
     background-color: white;
     padding: .5rem;
     box-shadow: 2px 2px 6px 2px rgba(0, 0, 0, .3);
}
@media only screen and (max-width: 1400px) {
  article {
      width: calc(100% - var(--fixedWidth) - 5rem);
  }
  table {
    width: 100%;
  }
  .thispage {
    position: static;
    transform: none;
    border-bottom: 1px solid var(--light);
  }
  .thispage ul {
    columns: 1;
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 760px) {
  tr,
  td,
  th {
    display: block;
  }
  thead {
    display: none;
  }
  tr:nth-of-type(odd):not(:first-of-type) {
    background-color: initial;
  }
  tr {
    border-bottom: 1px solid var(--comp);
  }
  td:first-of-type {
    padding-left: 0;
  }
  td::before {
    margin-right: 1rem;
    color: var(--main);
  }
  td:nth-of-type(1)::before {
    content: "Name: ";
  }
  td:nth-of-type(2)::before {
    content: "Target Market: ";
  }
  td:nth-of-type(3)::before {
    content: "Restrictions: ";
  }
  .dash {
    text-align: left;
  }
}
@media only screen and (max-width: 800px) { 
  article {
    width: 95%;
    margin: 0 auto;
  }
}
