body{
  max-width: 1400px;
  font-family: "Poppins", sans-serif;
  background-color: #FEF7ED; /* creme */
}
h1{
  font-size: 1.4rem;
  font-weight: 300;
}
h2{
  font-size: 1.2rem;
  font-weight: 200;
}
h3{
  font-size: 1rem;
  font-weight: 200;
}
p{
  font-size: 0.8rem;
  font-weight: 200;
}

.titel{
  width: 97.2%;
  height: 62px;
  border: 0.5rem outset #9b7d54;
  padding: 0.5rem;
  text-align: center;
}
.titel .img{
  width: 100%;
}
.region-oben{
  width: 99.5%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
}
.flex-item{
  width: 100%;
  text-align: center;
  border: 0.2rem solid #9b7d54;
  color: #5c3e15;   
}
.links{
  margin-right: 2px;
}
.rechts{
  margin-left: 2px;
}

#slideshow {
  text-align: center;
  overflow: hidden;
  height: 410px;
  width: 628px;
  margin: 0 auto;
}
.slide-wrapper {
  width: 2912px;
  -webkit-animation: slide 18s ease infinite;
  animation: slide 18s ease infinite;
}
.slide {
  float: left;
  width: 728px;
}
.slide img:nth-child(1) {
  width: 100%;
  background: #D93B65;
}
.slide:nth-child(2) {
  background: #037E8C;
}
.slide:nth-child(3) {
  background: #36BF66;
}
.slide:nth-child(4) {
  background: #D9D055;
}
.slide:nth-child(5) {
  background: #D9D055;
}
@keyframes slide{
  20% {margin-left: 0px;}
  30% {margin-left: -728px;}
  50% {margin-left: -728px;}
  60% {margin-left: -1456px;}
  70% {margin-left: -1456px;}
  80% {margin-left: -2184px;}
  90% {margin-left: -2184px;}
}
/*-- menubereich --*/
.region-mitte{
  position: relative;
  width: 100%;  
}
.asia-menu{
  width: 99.1%;
  margin-top: 2px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  border: 0.2rem solid #9b7d54;
  color: #5c3e15;  
  background-color: #f90505;    
}
ul{
  width: 90%;
  height: 20px;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 15%;
}
ul h1{
  margin-top: 0;
  color: #9ee5d8;  
}
a{
  position: relative;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  margin-left: 40px;
}
a::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: .3s;
}
a:hover::before{
  width: 100%;
}
.region-unten{
  width: 99.5%;
  height: 30vh; 
  margin-top: 2px;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
}
.flex-item{
  width: 100%;
  text-align: center;
  border: 0.2rem solid #9b7d54;
  color: #5c3e15;   
}
img{
  width: 70%;
  box-shadow: 15px 15px 15px #452f37;
}
.rechts img{
  height: 200px;
}

@media screen and (max-width:850px){
  .region-oben{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .region-unten{
    position: absolute;
    margin-top: 350px;
    width: 100%;
    flex-direction: column;
  }
  img{
    width: 50%;
    box-shadow: 15px 15px 15px #452f37;
  }
  ul{
    gap: 5%;
  }
}
  
