html {
  --version: 26.0801_03; /*underscore gets replaced by dot to fix issue with iPad/Safari*/
  --white4dark: antiquewhite;
  --darkBackground: #222;
  --darkHeadText: limegreen;
  --darkInvert: invert(1);
  --darkOddRows: wheat;
  font-family: Verdana, Deja Vu Sans, Segoi UI, Arial, sans-serif;
  --lnkButtonDecoration: #307090;
  }
h1.pageTitle {
  color: blueviolet;
  text-align: center;
  font-weight: normal;
  margin-top: auto;
  margin-bottom: auto;
  }
#hareHounds {
  position: absolute;
  width: 400px;
  height: 140px;
  top: 0.5em;
  right: 30px;
  z-index: -5;
  background-image: url('/images/drinkingClub.png');
  background-repeat: no-repeat;
  background-position: right;
  }
#content {
  background-color: #eeeee0;
  }
footer {
  margin-top: 1.0em;
  text-align: center;
  clear: both;
  color: black;
  font-weight: normal;
  font-size: 0.8em;
  }
.html5badge {
  vertical-align: middle;
  height: 20px;
  margin-top: 0.5em;
  }
.black {
  color: black;
  }
.blue {
  color: blue;
  }
.red {
  color: red;
  }
.green {
  color: darkgreen;
  }
.strike {
  text-decoration: line-through;
  }
.smiley {
  font-size: 150%;
  }
.centred {
  text-align: center;
  }
.justify {
  text-align: justify;
  }
.break {
  clear: both;
  }
.lnkButton {
  display: inline-flex;
  background-color: lightskyblue;
  border-radius: 10px;
  padding: 0.3em;
  border: solid 1px var(--lnkButtonDecoration);
  box-shadow: 3px 2px 0px var(--lnkButtonDecoration);
  }
.lnkButton--small {
  border-radius: 8px;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
  }
.lnkButton__lnk {
  font-size: 0.8em;
  font-weight: bold;
  color: maroon;
  text-decoration: none;
  }
.lnkButton__lnk--small {
  font-size: 0.9em;
  }
.lnkButton:hover {
  box-shadow: 1px 2px 0px var(--lnkButtonDecoration);
  opacity: 0.7;
  }
.lnkButton__lnk:hover {
  color: gold;
  }
@media only screen and (max-width: 1023px) {
  #hareHounds {
    display: none;
    }
  .lnkButton__lnk--small {
    font-size: 1.1em;
    }
}
@media (prefers-color-scheme: dark) {
  #content {
    background-color: var(--darkBackground);
    }
  h1.pageTitle {
    filter: var(--darkInvert);
    }
  #hareHounds {
    background-image: url('/images/dark-drinkingClub.png');
    }
  footer {
    color: var(--white4dark);
    }
  footer a {
    color: gold;
    }
}