:root {
  --krankblue: #464e6f;
  --krankred: #9d0606;
  --krankyellow: #f5bd5c;
}

*, ::before, ::after {
  box-sizing: border-box;
  font-family: Sans-serif;
  line-height: 1.5;
  font-size: 10pt;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: #ddd;
  color: #333;
}

#org-div-home-and-up { display: none; }

.title {
  text-align: center;
  margin: auto;
  background: var(--krankblue);
  padding-top: 3rem;
  padding-bottom: 2rem;
  border-bottom: 5px solid var(--krankred);
  
  text-shadow: -2px -2px 5px #000, 2px -2px 5px #000, -2px 2px 5px #000, 2px 2px 5px #000;
  color: #ddd;
}
.subtitle {
  color: var(--krankyellow);
}

.org-svg {
  z-index: -1;
  position: fixed;
  left: 20vw;
  top: 5vw;
  float: right;
  width: 60vw;
  opacity: 10%;
}

h1 {
  font-size: 250%;
  line-height: 1;
  text-align: left;  
  text-transform: uppercase;
}

.outline-2 {
  margin: auto;
  margin-bottom: 1rem;
  max-width: 70ch;
  width: 90%;
}

h2 {
  font-size: 140%;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 110%;
  text-align: center;
  text-transform: uppercase;
  background: var(--krankred);
  color: lightgrey;
  margin: -1rem;
  margin-left: -2rem;
  margin-right: -2rem;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  padding-top: 1rem;
  cursor: pointer;
}
h3:hover {
  text-decoration: underline;
}

h3 .org-svg {
  height: 2em;
  float: left;
  margin-left: 1rem;
}

h4 {
  color: var(--krankred);
  margin-top: 2rem;
}

.outline-3 {
  background: #ddd;
  color: #333;
  max-width: 65ch;
  margin: auto;
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 2.6rem;
  box-shadow: 2px 2px 10px #0005;
  
  height: calc(1.5em+2em);
  transition: 5s;
  
}
.active {
  height: none;
}
.inactive {
  height: 0;
  overflow: hidden;  
}

a {
  color: var(--krankred);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul,ol {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  margin-left: 1.5rem;
}
li {
  margin-bottom: 0.3rem;
}

table {
  margin-top: 0.5rem;
}
table {
  table-layout: fixed;
  min-width: 100%;
  border-collapse: collapse;
  border-top: 1px grey solid;
  border-bottom: 1px grey solid;
}
th {
  border-bottom: 1px grey solid;
  font-weight: bold;
  text-align: center;
  padding: 0.2rem;
  min-width: 6ch;
}
td {
  text-align: center;
  padding: 0.2rem;
}
.pastweek {
  color: #777;
}
.thisweek {
  font-weight: bold;
  background: #f002;
}
.strengthtable td {
  border-bottom: 1px solid #aaa;
}
.strengthtable td:nth-child(1),
.strengthtable td:nth-child(4) {
  text-align: left;
}