.html, body{
    height: 100%;
    margin: 0; 
    padding: 0;
  }
  
  *{
    margin: 0;
    padding: 0;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

/* Navigation und Header */
.header{
    width: 80%;
    padding-left: 10%;
    padding-right: 10%;
    position: fixed;
    z-index: 1001;
  }
  .top-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2em;
  }
  .top-nav ul li{
    list-style: none;
    display: inline-block;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
  }
  .top-nav ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    border: 0;
    outline: 0;
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
  }
  .top-nav ul li a:hover,
  .top-nav ul li a.active {
    background:rgb(109, 109, 109);
    color: #fff;
  }
  .top-nav button{
    background: rgb(109, 109, 109);
    color: #fff;
    font-size: 20px;
    border: 0;
    outline: 0;
    border-radius: 30px;
    padding: 10px 20px;
    cursor: pointer;
  }
  .top-nav button a{
    text-decoration: none;
    color: #fff;
    font-size: 20px;
  }

  /* Inhalt */

  .Inhalt{
    width: 100%;
    height: 100vh;
    position: relative;
  }
.Titelbild{
     position:absolute;
     z-index: 999;
     width: 100%;
     height: 100vh;
     }
     .maschsee{
         position: absolute;
         width: 100%;
         height: 100vh;
         object-fit: cover;
  }
  .rand{
    position: absolute;
    width: 100%;
    height: 100vh; 
    object-fit: cover;
    top: 43vh;
    z-index: 998;
  }
    .reiter-wrap{
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      display: flex;
      justify-content: center;
      align-items: center;
    } 
    .reiter{
         height: 50%;
         width: auto;
}

.products{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(70, 69, 69);
  position: relative;
  margin-top: 5%;
  z-index: 1000;
  text-decoration: none;
}
.products.links{
  flex-direction: row;
}
.products.rechts{
  flex-direction: row-reverse;
}
.products.links .beschreibung{
  align-items: center;
}
.products .beschreibung h2{
  font-size: 6em;
  font-weight: 900;
  max-width: 650px;
  display: flex;
  margin-top: 15px;
  margin-bottom: 15px;
  letter-spacing: 10px;
  }
.products .beschreibung p{
    font-size: 20px;
    font-weight: 400;
    max-width: 650px;
    display: none;
    opacity: 0;
}
  .products .bild{
      width: 350px;
  }
.products.links .bild{
  margin-right: 1em;
}
.products.rechts .bild{
  margin-left: 1em;
}

/****** FOOTER ******/

#footer
{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  position: relative;
  bottom: 1;
  left: 0;
  right: 0;
  padding: 1em;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 1em;
}

#footer .copyright
{
  color: #888;
  width: 50%;
}

#footer .links
{
  width: 50%;
  text-align: right;
}

#footer .links a
{
  color: #AAA;
  text-decoration: none;
  margin-left: 5px;
}

#footer .links a:hover
{
  color: #AAA;
  text-decoration: underline;
}

#footer .links a:first-child::before
{
  display: none;
}

/***** MEDIA *****/

@media only screen and (max-width: 480px) {
  .top-nav {
    flex-wrap: wrap;
  }
  .top-nav ul li {
    margin-right: 15px;
  }
  .Titelbild{
    position: relative;
    width: 100vw;
  }
  .products.rechts, .products.links{
    flex-direction: column;
  }
.products *{
  text-align: center !important;
}
.products .beschreibung h2{
  font-size: 3.5em;
  width:100%;
  margin: 0%;
  display: flex;
  justify-content: center;
}
}

@media only screen and (min-width: 481px) and (max-width: 1000px) {
  .top-nav {
    flex-wrap: wrap;
  }
  .top-nav ul li {
    margin-right: 15px;
  }
  .Titelbild{
    position: relative;
    width: 100vw;
  }
  .products.rechts, .products.links{
    flex-direction: column;
  }
.products *{
  text-align: center !important;
}
.products .beschreibung h2{
  font-size: 3em;
  width:100%;
  margin: 0%;
  display: flex;
  justify-content: center;
}
}
