<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.Bild{
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 20px auto 40px auto;
}

/* Bilder sollten 1000px x 563px   (AuflĆ¶sung 16:9)  ******/
.Bild img{
  width: 1000px;
  height: auto;
  border: 2px solid #000000;
}

.Bild p{
  width: 1000px;
}

/* kleinere Bilder im FlieĆtext  ******/
.article .Bild2{
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.article .Bild2 img{
  max-width: 700px;
  height: auto;
  margin: 4px auto 15px auto;
}

@media screen and (max-width: 1000px){
  .Bild{
    margin-top: -10px;
    margin-left: -10px;
    margin-right: -10px;
  }
  .Bild img{
    width: calc(100% - 4px);
    height: auto;
  }
  .Bild p{
    width: auto;
    margin-left: 10px;
    margin-right: 10px;
  }
}

/*Bilderslider */
.slideshow{
  display: flex;
  flex-direction: row;
  overflow: hidden;
  height: fit-content;
  justify-content: space-around;
}

.container-left{
  margin-right: 5px;
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.container-right{
  margin-left: 5px;
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.slides{
  width: 1004px;
  min-height: 100%;
  display: flex;
  overflow: hidden;
}

.slide{
  min-width: 100%;
  min-height: 100%;
  border-radius: 15px;
  transition: 0.6s;
  display: flex;
  flex-direction: column;
}

.slides img {
  width: auto;
  max-width: 1000px;
  height: auto;
  border: 2px solid #000000;
}

input[name="r"]{
position: absolute;
visibility: hidden;
}

.slideshow_navigation{
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

#b1, #b2, #b3, #b4, #b5, #b6, #b7, #b8, #b9, #b10{
  width: 35px;
  height: 10px;
  border: 2px solid #9b9b9b;
  border-radius: 5px;
  margin: -30px 3px 6px 3px;
  cursor: pointer;
  transition: 0.4s;
}

#b1{
  background-color: #9b9b9b;
}

.Bildbeschreibung{
  margin: -25px 0 30px 0;
  position: relative;
  display: none;
  justify-content: center;
}

#text1{
  display: flex;
}




/*Ćberschriften */

.article h1{
  color: #d55244;
  padding: 10px;
  margin: 0;
}

.article p{
  line-height: 1.35;
  padding: 10px;
}

.article a{
  padding-left: 10px;
  font-family: "Archivo", sans-serif;
}

.article img{
  margin: 4px 10px 0px 10px;
  /* border: 2px solid #3F3F3F; */
  border-radius: 12px;
  width: calc(100% - 20px);
}

.article h3{
  margin-bottom: 0px;
  margin-top: 35px;
  padding-left: 10px;
}

.article h5{
  margin-bottom: 0px;
  margin-top: 20px;
  padding-left: 10px;
}

.article table{
  margin-bottom: 45px;
  margin-top: 15px;
  padding-left: 10px;
}

.article ul{
  margin-top: 15px;
  margin-bottom: 35px;
}

.article ul li{
  list-style-type: disc;
  line-height: 1.35;
}

.article ol li{
  list-style-type: decimal;
  line-height: 1.35;
}

.article-heading{
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.article-heading h2{
  color: #372ac8;
  font-family: "Roboto", sans-serif;
  font-size: 0.95em;
  font-weight: 500;
  padding: 10px;
  margin: 0;
}

@media screen and (orientation: portrait), screen and (max-width: 1000px){
  .article-heading{
    display: block;
    margin-bottom: 15px;
  }
}
</pre></body></html>