html {
  min-height:100%;
}
body {
  min-height:100%;
  margin: 0;
  /* background-color: black;
  background-image: url(/images/snow-faded.jpg);
  background-position: top;
  background-size: 2000px;
  background-repeat: no-repeat; */
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12pt;
}
#backgroundcontainer {
  /* pointer-events: none; */
  width: 100%;
  min-height: 100%;
  position: relative;
  display: inline-block;
  /* overflow: hidden; */
}
#background {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  /* object-position: bottom; */
  object-fit: cover;
  /* left: -1000px; */
  /* display: block; */
  
  /* margin-top: 00%; */
  /* transform: translateY(0%); */

  /* filter: saturate(0.5) contrast(0.15) brightness(1.5); */

  filter: hue-rotate(120deg) sepia(1.0) saturate(2)  hue-rotate(-120deg)
  saturate(0.8) contrast(0.1) brightness(0.75);
  
}
#header {
  padding: 15px;
  background-color: greenyellow;
  text-align: center;
  text-shadow: 0 1px rgb(0 0 0 / 50%);
}
.contentbubble {
  /* padding-top: 8px; */
  padding: 10px;
  padding-bottom: 40px;
  background-color: rgb(100% 100% 100% / 80%);
  border-radius: 10px;
  width: 90%;
  margin: auto;
  margin-top: 40px;
}
#title {
  opacity: 0.5;
  font-weight: 800;
  font-size: 24pt;
  margin-bottom: 5px;
  line-height: 1.5;
}
#relatedlinks {
  /* background-color:red; */
  background-color: rgb(100% 100% 100% / 100%);
  margin: auto;
  width: 80%;
  max-width: 500px;
  opacity: 1;
  font-size: 9pt;
  padding: 5px;
  font-weight: 100;
  color: dimgray;
}
#linkbox {
  /* height: 500px; */
  margin: 2px;
  color: white;
  font-size: 14pt;
}
.linkboxitemcontainer {
  display: flex;
  flex-direction: row;
  background-color: dimgray;
  color: white;
}
.linkboxitemcontainer::before {
  border-top: 1px solid rgb(50% 50% 50% / 50%);
  border-bottom: 1px solid rgb(25% 25% 25% / 50%);
  content: " ";
  width: 6px;
}
.linkboxitemcontainer:nth-child(5n)::before {
  background-color: teal;
}
.linkboxitemcontainer:nth-child(5n + 1)::before {
  background-color: darkgreen;
}
.linkboxitemcontainer:nth-child(5n + 2)::before {
  background-color: yellow;
}
.linkboxitemcontainer:nth-child(5n + 3)::before {
  background-color: orangered;
}
.linkboxitemcontainer:nth-child(5n+4) {
  background-color: purple;
} 
.linkboxitem {
  border-top: 1px solid rgb(50% 50% 50% / 50%);
  border-bottom: 1px solid rgb(25% 25% 25% / 50%);
  flex-grow: 1;
  background-color: dimgray;
  padding: 10px;
  border-right: 1px solid lightgray;
  border-left: 1px solid lightgray;
}
.linkboxitem::after {
  content: ">";
  float:right;
  padding-right:5px;
  width: 6px;
} 
#footer {
  padding-top: 300px;
  margin-bottom: 10px;
  text-align: center;
  font-style: bold;
  color: white;
  font-size: 10pt;
}
#privacy, #about {
  /* text-shadow: 0px 1px 2px rgb(0 0 0); */
  color: white;
  text-decoration: underline;
}
