/** ################################## Globales ######################## */

@font-face {
  font-family: "Stolzl Light";
  src: url("../fonts/stolzl_light.ttf") format("truetype");
  src: url("../fonts/stolzl_light.otf") format("opentype");
}

body,
html {
  font-family: "Stolzl Light";
  letter-spacing: var(--letter_spacing);
}

a,
a:hover {
  cursor: pointer;
  color: #000000;
}

.container {
  display: flex;
  align-content: center;
  justify-content: center;
}

.container > .inside {
  /* Container horizontal mittig platzieren */
  width: 90vw;
  height: 90vh;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;

  /** Maximale Breite und Höhe */
  max-width: 1920px;
  max-height: 1080px;
}

.container > .inside > .inside_content {
  height: 70vh;
}

.dynamicOrientation {
  position: absolute;
}

/** ################################## PAGE - INDEX ######################## */

/** Address */
.region_address {
  text-decoration: underline;
  text-align: left;
}

/** Logo **/
.region_logo {
  width: 30%;
  position: absolute;
  bottom: 7vh;
}

.region_menu {
  position: absolute;
  bottom: 0vh;
  display: flex;
  width: 100%;
}

.region_menu .menu_link2 {
  margin-left: 10vw;
}

.region_logo img,
.region_smiley img {
  width: 100%;
  height: auto;
}

.region_smiley {
  width: 20%;
  justify-content: center;
  align-content: center;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/** ################################## PAGE - DataProtection + Impressum ######################## */

.inside_close {
  position: absolute;
  top: 1.5vh;
  font-size: 1.5em;
  right: 10%;
}

.inside_close a {
  text-decoration: none;
}

.page_protection h1,
.page_impressum h1 {
  text-align: left;
  font-size: 1.3em;
}

.page_protection .inside_content,
.page_impressum .inside_content {
  overflow: auto;
  margin-bottom: 2vh;
  padding-left: 1vw;
  padding-right: 1vw;
  padding-top: 1vh;
}

/** ################################## ONLY PAGE - DataProtection  ######################## */
.page_protection h3 {
  font-size: 1.3em;
}

.page_protection h4 {
  font-size: 1.2em;
  margin-left: 1vw;
  margin-right: 1vw;
}

.page_protection h5 {
  font-size: 1em;
  margin-left: 2vw;
  margin-right: 2vw;
}

.page_protection p {
  font-size: 0.8em;
  margin-left: 3vw;
  margin-right: 3vw;
  width: 62vw;
}

.page_protection ul {
  font-size: 0.8em;
  margin-left: 4vw;
  margin-right: 4vw;
  width: 60vw;
}

/** ################################## ONLY PAGE - Impressum ######################## */

.page_impressum p {
  font-size: 1em;
  margin-left: 1vw;
  margin-right: 1vw;
}

/** ################################################################### */
/** ######################### Override Media ########################## */
/** ################################################################### */

/** ################################## Desktop ######################## */
@media screen and (min-width: 992px) {
  .region_address {
    font-size: 1.625em;
  }

  .region_menu {
    font-size: 0.9em; /** Original: 1.063 **/
  }
}

/** ################################## Tablet ######################## */
@media screen and (max-width: 992px) {
  .region_address {
    font-size: 1em;
    margin-top: 5vh;
  }
  .region_menu {
    font-size: 0.6em; /** Original: 1.063 **/
  }
}

/** ################################## Mobil ######################## */
@media screen and (max-width: 600px) {
  .region_address {
    font-size: 0.8em;
    margin-top: 5vh;
  }

  .region_menu {
    font-size: 0.4em; /** Original: 1.063 **/
  }
}

/** ################################## Hochkant ######################## */
@media screen and (orientation: portrait) {
  .inside_close {
    top: 5vh;
    right: 5vw;
  }

  .page_protection h1,
  .page_impressum h1 {
    text-align: left;
    font-size: 1.3em;
    margin-top: 10vw;
  }

  .page_protection p {
    width: 80vw;
  }

  .region_address {
    width: 100%;
  }

  .region_address {
    font-size: 1em;
  }

  .region_smiley {
    width: 50%;
    top: -25%;
  }

  .region_logo {
    width: 80%;
    bottom: 10vh;
  }

  .region_menu {
    position: absolute;
    bottom: 2vh;
  }
}
