@import url("https://rsms.me/inter/inter.css");

html {
  font-size: 16px;
  font-family: "Inter", "Arial", "Helvetica", "sans-serif";
}

@media (max-width: 1400px) {
  html {
    font-size: 14px;
  }
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
}

body {
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  height: 100%;
  --header-height: 5rem;
}

#header {
  box-sizing: border-box;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: var(--header-height);
  padding: 0.5em;
  border: 6px solid black;
  background-color: #d8d8d8;
}

#content-container {
  box-sizing: border-box;
  max-height: calc(100vh - var(--header-height));
  width: 100%;
  overflow-y: auto;
}

main {
  margin: 2rem auto 0px auto;
  padding: 0px 4rem 2rem 4rem;
  max-width: 70rem;
}

table {
  border-collapse: collapse;
  border: 3px solid black;
  overflow-x: auto;
  width: 100%;
}

th {
  background-color: #d8d8d8;
  font-weight: 600;
  text-align: left;
}

th,
td {
  padding: 0.3em;
  background-clip: padding-box;
  min-width: 6em;
}

td {
  background-color: white;
}

tr:nth-child(odd) > td {
  background-color: #eee;
}

td:first-child {
  font-weight: 500;
}

th:first-child,
td:first-child {
  position: sticky;
  left: 0;
}

footer {
  margin-top: 4rem;
}
