.content {
  display: flex;
  padding: 80px 20px 20px 20px;
  align-items: center;
  flex-direction: column;
}

.headline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.subHeadline {
  margin-top: -20px;
  text-align: center;
}

.blogList {
  width: 100%;
  margin-top: 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

li {
  padding: 10px;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  width: 60%;
  margin: 10px;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.image {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

li,
a {
  display: block;
  text-decoration: none;
  color: #000;
}

.blogHeadline {
  font-weight: 800;
}

.blogContent {
  margin-top: 0px;
  font-weight: 300;
}

/*
  Article
*/

body {
  display: flex;
  justify-content: center;
  font-family: 'Source Sans Pro', sans-serif;
}


.articleContent {
  display: flex;
  padding: 80px 20px 20px 20px;
  flex-direction: column;
  width: 50%;
}

.articleHeadline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  align-self: flex-start;
}

.articleSubHeadline {
  margin-top: -20px;
}

.postImage {
  width: 100%;
  height: 100%;
}

.articleTextContent {
  margin: 50px 0 100px 0;
}




/* 
  Footer
*/

.footer {
  position: fixed;
  bottom: 0;
  padding: 15px;
  background-color: #f5f6ff;
  width: 100%;
  border: 0.7px solid grey;
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 18px;
}

.footerLinksContainer {
  width: 50%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.copyrgiht {
  padding-right: 50px;
  color: #2c3e50;
}

.footerItem {
  color: #2c3e50;
  font-weight: 600;
}

@media only screen and (max-width: 600px) {
  .content {
    padding: 100px 30px 80px 0px;
  }
  .articleContent {
    width: 100%;
  }
  li {
    width: 100%;
  }
  .copyrgiht {
    display: none;
  }
}