:root {
  --theme-color: #ffffff;
  --theme-bg: #ffffff;
  --theme-bg-outset: #caced1;
  --theme-bg-inset: rgb(245, 245, 245);
  --theme-text-color: #000000;
  --theme-td-border: rgb(61, 61, 61);
}

html {
  scrollbar-width: none;
}

html,
* {
  margin: 0;
  padding: 0;
  color: var(--theme-text-color);
  text-align: center;
  font-family: 'w95fa';
  font-size: 100%;
  box-sizing: border-box;
}

a {
  /*text-decoration: none;*/
  all: revert;
  text-decoration: none;
  color: #221db3;
  background-color: #caced1;
}

button {
  margin: 0;
  padding: 0;
  background-color: var(--theme-bg-outset);
  color: var(--theme-text-color);
  border: none;
}

.button {
  border: .0625rem solid transparent;
}

body {
  background-color: #221db3;
  background-image: url("/assets/Setup.png");
  padding: .625rem;
}

img {
  vertical-align: middle;
}

h1 {
  font-family: 'Times New Roman', serif;
  font-size: 200%;
  margin: auto;
  margin: .3125rem 0 .3125rem 0;
}

footer * {
  color: white;
}

.article p {
  margin: .625rem;
  padding: 0;
  text-align: justify;
}

ul {
  text-align: left;
}

.table-container {
  width: 100%;
  margin: auto;
  padding: .625rem .625rem 0 .625rem;
}

table {
  border-collapse: collapse;
  width: 100%;
}

td,
th {
  text-align: left;
  padding: 8px;
  font-family: 'w95fa';
  font-weight: 400;
}

td {
  border: .125rem solid var(--theme-td-border);
  background-color: var(--theme-bg-outset);
}

h4 {
  text-align: start;
  margin: 1rem 0 1rem 0;
}

@media (prefers-color-scheme: dark) {
  :root {
  --theme-color: #000000;
  --theme-bg: #1f1f1f;
  --theme-bg-outset: #36322f;
  --theme-bg-inset: #1f1f1f;
  --theme-text-color: #ffffff;
  --theme-td-border: white;
}
}

@media (min-width: 75rem) {
  html {
    font-size: 120%;
  }
}

@media (min-width: 125rem) {
  html {
    font-size: 150%;
  }
}

@media (min-width: 175rem) {
  html {
    font-size: 180%;
  }
}

@media (min-width: 225rem) {
  html {
    font-size: 210%;
  }
}

@media (min-width: 275rem) {
  html {
    font-size: 240%;
  }
}