:root {
  --text-color: 40, 42, 43;
  --second-color: 214, 175, 6;
  --background-color: 238, 238, 238;
  --third-color: 197, 0, 16;
}

html {
  background-color: rgba(var(--background-color), 0.5);
}

html, body {
  scroll-behavior: smooth;
  height: 100%;
  margin: 0;
}

* {
  font-family: "Coda";
  color: rgb(var(--text-color));
  text-decoration: none;
}

a.hand {
  cursor: pointer;
}

section:not(#home) {
  margin: 10% 2%;
  padding: 0;
  width: 95%;
}

@media (min-width: 1000px) {
  section:not(#home) {
    margin: 5% 10% 10% 10%;
    width: 80%;
  }
  .row {
    display: flex;
  }
  .tbl {
    float: left;
    margin: 0 2.5%;
    flex: 45%;
  }
}

@media (max-width: 1000px) {
  .row {
    display: flex;
    flex-direction: column;
  }
  .tbl {
    margin: 2rem 0;
  }
}

h1 {
  font-size: 3.5rem;
  margin-top: 0;
  line-height: 3.7rem;
  font-weight: 75;
  color: rgb(var(--second-color));
  font-family: "Anton";
  text-align: center;
}

p {
  font-size: 1rem;
  line-height: 1.6rem;
}

table {
  border-collapse: collapse;
}

table, th, td {
  border: 0px solid rgb(var(--text-color));
  padding-left: 4px;
}

table .header td {
  background-color: rgb(var(--second-color));
  color: white;
  text-align: left;
  font-weight: bold;
  height: 2rem;
}