* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
}

/* Navigation Top */

.topnav a {
  color: white;
}

.topnav {
  background-color: #7e0000;
  position: fixed;
  width: 100%;
  z-index: 3;
}

.topnav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  text-align: center;
}

.topnav ul a {
  display: block;
  padding: 15px;
  border: 1px solid #3d0000;
  text-decoration: none;
}

.topnav ul a:hover:not(.active) {
  background-color: #c90000;
}

.active {
  background-color: #3d0000;
}

.topnav .navbild {
  height: 0.9em;
}

.topnav .logo {
  float: left;
  display: block;
  font-size: 2em;
  padding: 12px 20px;
  text-decoration: none;
  background-color: #3d0000;
}

.topnav .menu {
  clear: both;
  max-height: 0;
  transition: 0.3s ease-out;
}

/*  Hamburger Menue  */

.topnav .menu-icon {
  background-color: #3d0000;
  padding: 28px 20px;
  position: relative;
  float: right;
  cursor: pointer;
}

.topnav .menu-icon .nav-icon {
  background: white;
  display: block;
  height: 3px;
  width: 20px;
  position: relative;
  transition: background 0.2s ease-out;
}

.topnav .menu-icon .nav-icon:before {
  background: white;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  top: 7px;
}

.topnav .menu-icon .nav-icon:after {
  background: white;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: -7px;
}

.topnav .menu-btn {
  display: none;
}

.topnav .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.topnav .menu-btn:checked ~ .menu-icon .nav-icon {
  background: transparent;
}

.topnav .menu-btn:checked ~ .menu-icon .nav-icon:before {
  transform: rotate(-45deg);
  top: 0;
}

.topnav .menu-btn:checked ~ .menu-icon .nav-icon:after {
  transform: rotate(45deg);
  top: 0;
}

@media all and (min-width: 56em) {
  .topnav li {
    float: left;
  }

  .topnav li a {
    padding: 20px 30px;
  }

  .topnav .menu {
    clear: none;
    float: right;
    max-height: none;
  }

  .topnav .menu-icon {
    display: none;
  }
}

/* Ende Navigation */

/* header Startseite */

header {
  width: 85vw;
  margin: 0 auto;
}

header .header {
  width: 100%;
  display: flex;
  align-items: center;
}

header .header .teaserbildbox {
  width: 40%;
  height: auto;
}

header .header .teaserbildbox .teaserbild {
  width: 100%;
}

header .header .teasertxt {
  width: 60%;
  color: #7e0000;
  float: right;
  text-align: right;
}

header .header .teasertxt h2 {
  margin-top: 0.2em;
  font-size: 4em;
}

header .header .teasertxt p {
  color: #3d0000;
  font-weight: bold;
  margin-top: 0.5em;
  margin-bottom: 1em;
}

header .header .teasertxt ul {
  list-style: none;
  font-weight: bold;
  font-size: 1.5em;
}

header .header .teasertxt .teasertxtbildbox .teasertxtbild {
  width: 90%;
  height: auto;
  margin-top: 1em;
}

@media all and (max-width: 68em) {
  header .header .teasertxt h2 {
    font-size: 3em;
  }
}

@media all and (max-width: 52em) {
  header .header {
    flex-direction: column;
  }

  header .header .teaserbildbox {
    width: 100%;
  }

  header .header .teaserbildbox .teaserbild {
    width: 60%;
    margin: 0 20%;
  }

  header .header .teasertxt {
    width: 100%;
    text-align: center;
    margin-bottom: 2em;
  }

  header .header .teasertxt h2 {
    font-size: 2.5em;
  }

  header .teasertxt .teasertxtbildbox {
    margin-top: 1.5em;
    border: 1px solid black;
    box-shadow: 0 0 0.8em black;
  }
}

/* Ende Header Startseite */

/* Anfang Inhalt */

main {
  width: 85vw;
  margin: 0 auto;
}

h1 {
  color: #7e0000;
  font-size: 2em;
}

p {
  line-height: 1.5;
}

.txtdeco {
  text-align: center;
  color: #7e0000;
  font-weight: bold;
  padding: 0.2em;
  border: solid 2px #7e0000;
}

sup {
  line-height: 0;
}

.innerpic {
  width: 50%;
  float: right;
  border: 1px solid black;
  box-shadow: 0 0 0.8em black;
  margin: 1em 0 1em 1em;
}

.anekdote {
  display: flex;
}

.anekdotebild {
  margin-right: 1em;
}

.anekdotebild img {
  width: 200px;
  border: 1px solid black;
}

.werbeboxgoogle {
  margin: 2em 0;
  border: 2px solid #7e0000;
}

.werbeboxgoogle p {
  color: white;
  font-size: 0.7em;
  padding: 0.5em 1em;
  background-color: #7e0000;
}

.werbebox {
  text-align: center;
  padding: 1rem;
}

.werbeboxdoppel {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

@media screen and (max-width: 60em) {
  .anekdote {
    flex-direction: column;
  }

  .anekdotebild {
    text-align: center;
    margin: auto;
  }

  .anekdotetxt {
    width: 100%;
    margin-top: 2em;
  }
}

h6 {
  /* Recht + Datenschutz */
  color: #7e0000;
  font-size: 3em;
}

.didai h3 {
  color: #c90000;
  font-size: 1.5em;
  text-decoration: underline;
}

/* Herstellung - Zusammenbau */

.doppelblock,
.doppelblock2 {
  display: flex;
  margin: 1.5em 0;
}

.itemleft {
  width: 50%;
  margin-right: 0.5em;
  border: 1px solid black;
  box-shadow: 0 0 0.8em black;
}

.itemleft2 {
  width: 50%;
  margin-right: 0.5em;
}

.itemright {
  width: 50%;
  margin-left: 0.5em;
  border: 1px solid black;
  box-shadow: 0 0 0.8em black;
}

.itemright2 {
  width: 50%;
  margin-left: 0.5em;
  border: 1px solid black;
  box-shadow: 0 0 0.8em black;
}

.innerbild,
.innerbild2 {
  width: 100%;
}

.innerbild_klein {
  width: 80%;
}

.farbig {
  color: #7e0000;
  font-size: 1.5em;
}

@media all and (max-width: 52em) {
  .doppelblock,
  .doppelblock2 {
    flex-direction: column;
    margin: 0.5em 0;
  }

  .itemleft,
  .itemleft2,
  .itemleft3 {
    width: 100%;
    margin: 1em 0;
  }

  .itemright,
  .itemright2,
  .itemright3 {
    width: 100%;
    margin: 1em 0;
  }

  .innerbild_klein {
    width: 85%;
    margin: 0 7.5%;
  }
}

.underline {
  color: #7e0000;
  font-weight: bold;
  text-decoration: underline;
}

.werbg {
  color: gray;
  font-size: 0.9em;
  margin-bottom: 0.5em;
}

.werbung2 {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.weiterbtn {
  color: white;
  text-decoration: none;
  padding: 1em;
  background-color: #7e0000;
  box-shadow: 3px 3px 4px 1px #666;
  float: right;
  margin-bottom: 0.5em;
}

.amazbtn {
  color: black;
  padding: 2px;
  text-decoration: none;
  font-weight: bold;
  background-color: #ff9400;
  border: 0.5px solid black;
  border-radius: 4px;
}

/* ab hier Amazonbox Herstellung */

.amazonbox1 {
  position: relative;
  width: 200px;
  height: 300px;
  padding: 0.5em;
  border: 2px solid #7e0000;
  margin: 1rem;
}

.amazonbox1 img {
  max-width: 100%;
  padding: 1em 0;
}

.linknormal {
  color: black;
  text-decoration: none;
}

.amazonbox1 h4 a:hover {
  color: #ff9400;
}

.linkbutton {
  position: absolute;
  bottom: 1em;
  left: 0.5em;
  right: 0.5em;
  display: block;
  color: black;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background-color: #ff9400;
  border: 0;
  padding: 0.5em 0.5em;
  border-radius: 1em;
}

/* bis hier Amazonbox Herstellung */

/* Ende Herstellung - Zusammenbau */

/* Anfang Seite Extras */

.extrabox {
  display: flex;
  width: 100%;
  padding: 1em 1em 0 1em;
  border: 2px solid #7e0000;
}

.extraboxbild {
  width: 30%;
}

.extraboxtxt {
  width: auto;
  padding-right: 2em;
  padding-top: 0.5em;
}

.extraboxbild2 {
  width: 20%;
}

.extraboxbild img {
  width: 15em;
}

.extraboxbild2 img {
  height: 15em;
  float: right;
  border: 1px solid black;
  box-shadow: 3px 3px 4px 1px #666;
}

.extraboxbild3 img {
  width: 13em;
  margin-right: 1em;
  margin-top: 0.5em;
}

.extraboxbild4 {
  width: 35%;
  margin-right: 1.5em;
}

.topmargin {
  margin-top: 1em;
}

.extraboxbild5 {
  width: 40%;
  margin-right: 1em;
}

.extraboxbild4 img {
  width: 100%;
  border: 1px solid black;
  box-shadow: 3px 3px 4px 1px #666;
}

.extraboxbild5 img {
  margin-top: 1.5em;
  width: 300px;
  max-width: 100%;
}

.extraboxtxt2 {
  width: 65%;
}

.extraboxtxt2 img {
  width: 100%;
}

.videoboxiframe {
  padding-top: 56.25%;
  position: relative;
  margin-bottom: 0.5em;
  border: 1px solid black;
  box-shadow: 3px 3px 4px 1px #666;
}

.videoboxiframe iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media all and (max-width: 60em) {
  .extrabox {
    flex-direction: column;
  }

  .extraboxbild,
  .extraboxbild3,
  .extraboxbild5 {
    width: 100%;
    text-align: center;
  }

  .extraboxbild4 {
    order: 2;
    width: 80%;
    text-align: center;
    margin: auto;
  }

  .extraboxbild2 {
    display: none;
  }

  .extraboxtxt {
    width: 100%;
    padding: 0;
    margin-bottom: 1em;
  }

  .extraboxtxt2 {
    width: 100%;
    text-align: center;
  }
}

/* Ende Seite Extras */

/* Inhalt von Impressum */

.impres h5 {
  font-size: 1.5em;
  color: #7e0000;
}

.impresblock {
  display: flex;
}

.impresblock .adress {
  width: 40%;
  margin-top: 0.5em;
}

.impresblock .adress .email {
  height: 1.5em;
  width: auto;
}

.impresblock .rhtk {
  width: 60%;
}

.rhbanner,
.tkbanner {
  max-width: 100%;
  height: auto;
}

.impres .impresblock .adress h6 {
  color: #7e0000;
  font-size: 2.5em;
  text-decoration: underline;
  margin-bottom: 1.5em;
}

.impres .impresblock p {
  font-weight: normal;
}

.cookie {
  color: #c90000;
  font-size: 1.5em;
}

@media all and (max-width: 56em) {
  .impresblock {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: auto;
  }

  .email {
    font-size: 0.8em;
  }

  .impresblock .adress {
    width: 100%;
    text-align: center;
    padding-top: 40px;
    border: 1px solid black;
    box-shadow: 0 0 0.8em black;
  }

  .impresblock .rhtk {
    width: 100%;
  }

  .tkbanner {
    border: 1px solid black;
    box-shadow: 0 0 0.8em black;
  }
}

/* Ende Inhalt von Impressum Datenschutz Rechtliches */

/* Ende Inhalt - Main */

footer {
  margin: auto;
  padding-top: 1.5rem;
  padding-bottom: 1em;
  overflow: hidden;
  background-color: #7e0000;
  color: white;
  text-align: center;
}

footer span {
  font-size: 0.8em;
  letter-spacing: 2px;
}

footer span a {
  font-size: 1em;
}

footer li {
  display: inline-block;
  padding: 0.5em;
}

footer a {
  color: white;
  font-size: 0.8em;
}

@media all and (min-width: 56em) {
  footer {
    margin: 0;
    padding: 0 4em 1em 4em;
  }

  footer span {
    float: right;
    margin: 1.5em 0.5em;
    font-size: 1em;
    letter-spacing: 0;
  }

  footer ul {
    float: left;
    margin: 1.5em 0.5em;
    font-size: 1em;
    margin-top: 0.9em;
  }

  footer a {
    font-size: 1em;
  }
}

/* Ende Footer */
