@charset "UTF-8";

* { margin: 0; padding: 0; border-style: none; }

html, body {
  background-color: #FFF;
  font-family: 'Zen Kaku Gothic Antique', Tahoma, Arial, sans-serif;
  height: 100%;
}

#wrapper {
  background-color: #FFF;
  width: 100vw;
  max-width: 60em;
  min-height: 80vh;
  margin: 0 auto;
  display: grid;
  grid: "header" 3.75em
        "main"
        "footer" min-content
        / 1fr;
}

header {
  grid-area: header;
  position: relative; /* menuebutton = absolute */
  /*background-color: Peru;*/
}

main {
  grid-area: main;
  /*background-color: PaleGoldenRod;*/
}

footer {
  grid-area: footer;
  background-color: #FFF;
  color: #808080;
  font-size: 1em;
  text-align: center;
}

.imgcontainer {
  width: 100%;
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0 auto;
}

.imgcontainer img {
  max-width: 100%;
  height: auto;
  display: block;
}

header h1 {
  font-weight: 400;
  /*font-style: italic;*/
  font-size: 2em;
  margin: 0em 0 0 0.25em;
}

h2 {
  font-weight: 200;
  line-height: 0.75;
  margin: 0 0 0.5em 0;
}

ul#desktopmenue {
  text-align: center;
  display: block;
  margin: 1.75em 0 0 0;
  /*background-color: #CD853F;*/
}

ul#desktopmenue li {
  list-style-type: none;
  display: inline-block;
  font-size: 1.5em;
  margin: 0 0.5em 0 0.5em;
}

ul#desktopmenue li:nth-child(1) {
  margin: 0 0.5em 0 0;
}

ul#desktopmenue li:nth-child(3) {
  margin: 0 0 0 0.5em;
}

ul#desktopmenue li a {
  color: #808080;
}

ul#desktopmenue li a:hover {
  color: #000;
}

p.frontpage-links {
  font-size: 1.3em;
  color: #696969;
  text-align: center;
  margin: 1em 0 0 0;
}

p.contact {
    text-indent: -999999px;
    line-height: 25px;
    background-image: url(../images/contact.png);
    background-repeat: no-repeat;
    background-position: center center;
    margin: 1.5em 0 0 0;
}


p.copyright {
  font-size: 1em;
  color: #808080;
  text-align: center;
  margin: 2em 0 0 0;
}

.menuebutton {
  display: block;
  z-index: 1;
  position: absolute; /* header = relative */
  right: 1.5em;
  top: 0.2em;
}

.menuebutton p {
  /*font-weight: bold;*/
  font-size: 2em;
}

.menuebutton .button-text {
  font-size: 0.75em;
}

a {
  text-decoration: none;
}

a:link {
  color: #808080;
}

a:visited {
  color: #808080;
}

a:hover {
  color: #000;
}

a:active {
  color: #808080;
}


