@font-face {
 font-family:"sources-extralight";
 src:url("/static/sourcesanspro-extralight-webfont.woff")
}
@font-face {
 font-family:"sources-bold";
 src:url("/static/sourcesanspro-bold-webfont.woff")
}
@font-face {
 font-family:"sources-regular";
 src:url("/static/sourcesanspro-regular-webfont.woff")
}
.flexfill {
 flex:1 auto
}

:root {
  --gray-light: #e9ecef;
  --gray-dark: #ddd;
}

html, body {
	background-color: #f8f9fa;
	margin: 0;
	min-height: 100vh;
 font-family:"sources-regular", sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.content {
	margin: auto;
	max-width: 1140px;
	min-height: calc(100vh - 9rem);
}

#posts { 
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 3rem;
  margin-left: -15px;
  margin-right: -15px;
}

.flex-post {
  flex: 0 0 33%;
  max-width: 33%;
}

.post {
  background-color: #fff;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  position: relative;
  margin: 15px 0px 15px 15px;
}

.post-thumbnail {
  width: 100%;
}

.post-body {
  padding: 1.25rem;
	overflow: hidden;
}

.publish-date, .publish-user {
  color: #6c757d;
  font-size: 80%;
  margin-bottom: 0;
  margin-top: 0;
}

.post-meta {
  padding: 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
}

.header {
	padding-top: 3rem;
  padding-bottom: 6rem;
}

a,
a:hover {
  color: initial;
  text-decoration: none;
}

h1.lead {
  font-weight: bold;
  font-size: 50px;
}

p.lead {
  font-weight: normal;
}

footer {
  color: var(--gray-dark);
  background-color: black;
	padding-top: 3rem;
	padding-bottom: 3rem;
	height: 3rem;
	text-align: center;
}

footer .footer-link {
  color: #fff;
  display: inline-block;
  text-decoration: underline;
}

.footer-link:hover {
  color: var(--gray-dark);
}

.footer-logo {
  fill: #fff;
  max-width: 40px;
}
.footer-logo:hover {
  fill: var(--gray-dark);
}

@media (max-width: 1155px) { 
  #posts {
    margin-right: 0;
  }
}

@media (max-width: 760px) {
  .content { 
    padding-left: 15px;
    padding-right: 15px;
  }
  .flex-post {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
