* {

    box-sizing: border-box;

    padding: 0;

    margin: 0;

}



body {

    background: #f1f1f1;

}



.menu {

  overflow: hidden;

  background-color: whitesmoke;

}



.header {

    background-color: whitesmoke;
    height: 50px;
}


	
a {
    color: black;
    text-decoration: none;
}

a:hover {
    color: #FFAC00;
    text-decoration: underline;
}

a:visited {
    color: black;
}


a:hover {

    text-decoration-color: orangered;

}


a.blog-links {
    font-size: 18px;
}

a.link-weiterlesen {
    color: black;
    font-family: 'Jua', sans-serif;
    font-size: 20px;
}


h1 {
    font-family: 'Jua', sans-serif;
    text-align: center;
}



h2 {
    font-family: 'Jua', sans-serif;
    font-size: 30px;
}



h5 {
    font-family: 'Quicksand', sans-serif;
    font-size: 18px;
    font-weight: 300;
}

p {
    font-family: 'Quicksand', sans-serif;
    font-size: 17px;
}

.beitrag-schrift {
    font-family: 'Libre Baskerville', serif;
}

.menu a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 5px 10px;
  margin-left: 20px;
  text-decoration: none;
  font-size: 19px;
  font-family: 'Quicksand', sans-serif;
  font-weight:800; 
}

.menu a:hover {
  border-bottom: 2px solid #F7D358;
  color: black;
}

.aktiv {
  border-bottom: 2px solid #FFAC00;
  color: black;
}


.content-links {   
    float: left;
    width: 75%;
    padding: 20px;
    
}

.content-hauptseite {
    float: left;
    width: 25%;
    padding: 20px;
    padding-left: 0;
}


.beitrag {
    border: 2px solid #FF4000;
    margin-top: 20px;
    max-width: 250px;
    min-width: 250px;
    height: 150px;
    padding: 20px;
    border-radius: 10px;
    float: left;
}

#festgemacht {
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
}

img.blogbild {
    height: 150px;
    max-width: 200px;
    max-height: 150px;
    width: auto; 
}


.beitrag-rechts {
    width: 100%;
    padding: 20px;
    border-bottom:2px solid #FF4500;
}

.beitrag-text {
    margin-top: 20px;
    margin-left: 290px;
}

.content {
     background-color: white;
     width: 100%;
     padding: 20px;
     margin-top: 20px;
     float: left;
}

.content-linie {
    width:100%;
    height:3px;
    background-color: #FF4500;
    margin-top: 14px;
    float: left;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}


.footer {
    padding: 20px;
    text-align: center;
    background: #ddd;
    margin-top: 20px;
}


@media screen and (max-width: 800px) {
    .content-links, .content-hauptseite {   
        width: 100%;
        padding: 0;
    }

}


main {
    margin: 20px;
}

#scrolltopbutton {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 20px;
  border: none;
  outline: none;
  background-color: #FF4500;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#scrolltopbutton:hover {
  background-color: #FF6A00;
}

