@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');


:root {
  --basecolor: #152d30;
  --backgroundcolor: #fff;
  --accentcolor: #fc0;
  --linkcolor: #333;
  --hovercolor: #ccc;

}


@media (prefers-color-scheme: light) {
  :root {
    --basecolor: #333;
    --backgroundcolor: #fff;
    --linkcolor: #333;

  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --basecolor: #ccc;
    --backgroundcolor: #333;
    --linkcolor: #CCC;

  }
}

body,
html {
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: Roboto, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 150%;
  color: var(--basecolor);
  background-color: var(--backgroundcolor);
}

*,
*::before,
*::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

textarea:focus,
select:focus,
input:focus,
a:focus,
input[type="range"]:-moz-focusring {
  outline: none;
}

h1 {
  font-size: 36px;
  margin: 0px 0 20px 0;
}

h2 {
  font-size: 26px;
  margin: 0px 0 15px 0;
  padding: 0;
  font-weight: 700;
}

h3 {
  font-size: 22px;
  margin: 0px 0 5px 0;
  padding: 0;
  line-height: normal;
  font-size: inherit;
  font-weight: 700;
}

p {
  margin: 0 0 20px 0;
  line-height: 150%;
}

a {
  color: var(--basecolor);
  line-height: normal;
  text-decoration: none;
  border-bottom: 1px solid var(--basecolor);
  border-color: var(--basecolor);
  cursor: pointer;
  background-color: transparent;
}

a:hover {
  color: #ccc;
  border-color: #ccc;
}

img {
  border: none;
  max-width: 100%;
}

br {
  clear: both;
}

b {
  font-weight: bold;
}

ul,
ol {
  margin-left: 40px;
}

li {
  margin: 0 0 12px 0;
  padding: 0;
}

a img {
  border: none;
  background: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 0px solid #ccc;
  height: 70px;
  background-color: var(--backgroundcolor);
  z-index: 10;
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  justify-items: center;
  color: #CCC;
}

table {
  border: 0px solid #ccc;
  border-collapse: collapse;
}

td {
  border-bottom: 0px solid #ccc;
  padding: 5px 20px 5px 0;
  white-space: nowrap;
  text-align: left;
}

th {
  white-space: nowrap;
  padding-right: 20px;
  padding-bottom: 20px;
  font-size: 13px;
  text-align: left;
  text-transform: uppercase;
}

th a {
  border: none;
  text-decoration: none;
}

thead {
  border: 0px solid #000;
  height: 0px;
  padding: 40px;
}

.italic {
  font-style: italic;
}


/* ICON WRAP IN STYLES AS .icon */
.material-icons {
  font-size: 32px;
}

.material-icons.md-14 {
  font-size: 14px;
}

.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

.material-icons.md-60 {
  font-size: 60px;
}

.material-icons.minicon {
  vertical-align: text-top !important;
  margin-right: 10px;
}

.material-icons.microicon {
  vertical-align: text-top !important;
  font-size: 14px !important;
  display: inline;
}

@media (max-width: 1000px) {

  body {
    font-size: 18px;
  }

}