@import url('https://fonts.googleapis.com/css?family=League+Spartan');

.siteHeader
{
  background-image: url("/assets/header_image.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
}
.siteHeaderMenus
{
  position: absolute;
  bottom: 4%;
  right: 0px;
  width: 80%;
  font-family: League Spartan,Verdana;
  font-size: 3.0vw;
  display: flex;
  justify-content: space-evenly;
}
.siteHeaderLogo
{
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%
}
.siteFooter
{
  position: relative;
  width: 100%;
  font-family: League Spartan,Verdana;
  font-size: 1.7vw;
  text-align: center;
}
.siteFooterCopyrightMessage
{
  font-size: 1.1vw;
  font-style: italic;
  line-height: 1.1;
  display: inline-block;
  text-align: justify;
  width: 66%;
}
a
{
  text-decoration:none;
  color: black;
}
a:focus
{
  outline: 1px dotted black;
}

.generalMessage
{
  font-family: League Spartan,Verdana;
  font-size: 1.5vw;
  text-align: justify;
  margin: 2vw;
}
.generalHeadline
{
  font-family: League Spartan,Verdana;
  font-weight: bold;
  font-size: 2.0vw;
  text-align: left;
}

@media only screen and (min-width: 1920px) and (-webkit-min-device-pixel-ratio: 2)
{
  .siteHeader
  {
    background-image: url("/assets/header_image_3840.jpg");
  }
}
@media only screen and (min-width: 1921px)
{
  .siteHeader
  {
    position: relative;
    width: 1920px;
    margin: auto;
  }
  .siteHeader:before
  {
    box-shadow: -20px 0 20px -20px #AAAAAA inset;
    content: " ";
    height: 100%;
    position: absolute;
    top: 0;
    left: -20px;
    width: 20px;
  }
  .siteHeader:after
  {
    box-shadow: 20px 0 20px -20px #AAAAAA inset;
    content: " ";
    height: 100%;
    position: absolute;
    top: 0;
    right: -20px;
    width: 20px;
  }
  .siteHeaderMenus
  {
    font-size: 58px;
  }
  .siteFooter
  {
    position: relative;
    width: 1920px;
    font-size: 33px;
    margin: auto;
  }
  .siteFooter:before
  {
    box-shadow: -20px 0 20px -20px #AAAAAA inset;
    content: " ";
    height: 100%;
    position: absolute;
    top: 0;
    left: -20px;
    width: 20px;
  }
  .siteFooter:after
  {
    box-shadow: 20px 0 20px -20px #AAAAAA inset;
    content: " ";
    height: 100%;
    position: absolute;
    top: 0;
    right: -20px;
    width: 20px;
  }
  .siteFooterCopyrightMessage
  {
    font-size: 21px;
  }
}