/* GENERAL */

body {
  background-color: black;
  color: yellowgreen;
  font-family: Arial, Helvetica, sans-serif;
}


.split_parts_div {
  background-color: yellowgreen;
  width: 80%;
  height: 7px;
  border-radius: 10px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
  max-width: 1000px;
}


/* VORWORT */

#vorwort_div {
  display: flex;
  flex-direction: column;
  border: 2.5px dotted yellowgreen;
  padding: 20px;
  width: 80%;
  max-width: 650px;
  margin: 0 auto;
  margin-top: 25px;
  font-size: 18px;
}

#vorwort_headline_span {
  color: red; 
  font-size: 25px; 
  font-weight: 600;
  text-align: center;
}

#vorwort_txt_span {
  font-size: 18px;
  margin-top: 10px;
} 

@media only screen and (max-width: 500px) {
  
  #vorwort_div {
    padding: 5%;
  }

} 

/* SINGLE BLOG POST DIV */

.single_blog_post {
  display: flex;
  flex-direction: column;
  text-align: center;
  border: 2.5px dotted yellowgreen;
  padding: 20px;
  width: 80%;
  max-width: 650px;
  margin: 0 auto;
  margin-top: 25px;
  font-size: 18px;
}

@media only screen and (max-width: 500px) {
  
  .single_blog_post {
    padding: 5%;
  }

}

.single_blog_post_red_headline {
  color: red; 
  font-size: 25px; 
  font-weight: 600;
  margin-bottom: 10px;
}

.single_blog_post_normal_headline {
  margin-top: 7.5px;
}

.single_blog_post_info_txt_span {
  margin-top: 25px;
  text-align: left;
}

/* Redirect To Link Button */

.single_link_redirect_btn_div {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: yellowgreen;
  color: black;
  border-radius: 15px;
  font-weight: 600;
  font-size: 16px;
  width: 175px;
  height: 40px;
  margin: 0 auto;
  margin-top: 25px;
  cursor: pointer;
  text-decoration: none;
}

.single_link_redirect_btn_div:hover {
  background-color: rgb(184, 201, 152);
}