html {
    min-height: 100%;
}

body {
    font: 1em Helvetica, Arial, sans;
    background-color: #f8f8f8;
    color: #222;
    line-height: 1.5em;
    margin: 0;
    min-height: 100vh;
    position: relative; /* control positioning for footer */
    text-align: center;
}

.default-invisible {display: none;}

header {
    margin-bottom: 2em;
}

main {
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 4em; /* protect footer */
}

footer {
    font-size: 0.8em;
    line-height: 1.5em;
    position:absolute; bottom: 1em; left: 0; right: 0;
    z-index: -1;
}

#content {
}

#content > ol {
  text-align: left;
}
.button-link {
  text-decoration: none;
}
.biglink, .midlink {
  background-color: #73b46d;
  border: 0;
  border-radius: 1em;
  box-shadow: rgba(0,0,0,0.5) 0px 0px 3px;
  color: white;
  display: block;
  font-size: 1.8em;
  font-weight: bold;
  margin: 10px auto;
  padding: .3em 2.2em;
  text-decoration: none;
}

.biglink:hover, .midlink:hover {
  background-color: #60ab5b;
  cursor: pointer;
}

.midlink {
    font-size: 1.2em;
    padding: 0.4em 1.1em;
}

#titleline {
  font: bold italic 4em "Impact Condensed", Impact, Helvetica, Arial, sans;
}

#titleline > a {
  text-decoration: none;
  color: inherit;
}

#title_subhead {
  font-weight: bold;
}
#js-error {
  background-color: red;
  border: 0.2em solid black;
  border-radius: 1em;
  box-shadow: rgba(0,0,0,0.6) 0px 0px 8px;
  color: white;
  font-weight: bold;
  margin: 0 auto;
  max-width: 60ch;
  opacity: 1;
  padding: 1.4em;
  position: fixed; left: 0; right: 0;
  z-index: 10;
}
#js-error.anihide {
  transition: opacity 0.5s ease-in;
  opacity: 0;
  z-index: -1;
}
form {
  line-height: 3em;
}

#live-indicator {
  font-size: 0.9em;
  font-weight: bold;
  position: fixed; top: 0.5em; left: 0.5em;
  text-transform: uppercase;
  vertical-align: middle;
  visibility: visible;
}
#live-indicator-dot {
  background-color: red;
  border-radius: 0.5em;
  display: inline-block;
  height: 0.8em;
  position: relative; top: 1px;
  width: 0.8em;
}
#live-indicator.delayed-hidden {
  transition: visibility 120s; /* non-animatablity comes in handy here */
  visibility: hidden;
}
.em_h {display: none;}
span.bold {font-weight: bold;}
span.noselect {user-select: none;}
.bodytext {text-align: left;}
