@import url("https://fonts.googleapis.com/css?family=Merriweather:300,300i,900,900i|Neuton|PT+Serif");
@import url("https://fonts.googleapis.com/css?family=Neuton:300,400,400i");
.social-icons-left, .social-icons-right {
  text-align: center;
  float: none;
}

.social-icons {
  font-size: 1.25rem;
  padding: 0.5em 0 0 0;
  width: 100%;
}

.social-icons a.fa {
  cursor: pointer;
  opacity: 0.8;
  /* padding: 0.2em; */
}

.social-icons a.fa:hover {
  opacity: 1;
  text-decoration: none;
}

.social-icons iframe[title=Flattr] {
  position: relative;
  top: 0.1em;
}

.post-meta {
  font-style: italic;
  color: lightslategrey;
}

.small {
  font-size: 0.9em;
}

p.post-summary {
  margin-bottom: 0.5rem;
}

.categ {
  display: block;
  font-weight: 300;
  font-family: serif;
  font-size: 75%;
  color: #CE534D;
}

header,
main {
  padding: 0 20px;
}

/*** wrapper for both header and main ***/
body {
  font-family: "Merriweather", "Neuton", "PT Serif", "Palatino", serif;
  font-size: 14px;
  color: #46433A;
  background-color: #FFFFF8;
  margin-top: 10%;
}
body h2 {
  margin-top: 0.1em;
  margin-bottom: 0;
}
body h3, body p {
  margin: 0;
}

/*** anchor tags ***/
a:link,
a:visited,
a:hover,
a:active {
  color: #CE534D;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/*** main content list ***/
.main-list-item {
  font-weight: bold;
  font-size: 1.2em;
  margin: 0.8em 0;
}

/* override the left margin added by font awesome for the main content list,
since it must be aligned with the content */
.fa-ul.main-list {
  margin-left: 0;
}

/* list icons */
.main-list-item-icon {
  width: 36px;
  color: #46433A;
}

/*** logo ***/
.logo-container {
  text-align: center;
}

.logo {
  width: 100px;
  height: 100px;
  display: inline-block;
  background-size: cover;
  border-radius: 50%;
  -moz-border-radius: 50%;
  border: 2px solid #FFFFF8;
  box-shadow: 0 0 0 3px #46433A;
}

/*** author ***/
.author-container h1 {
  font-size: 2.8em;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
}

/*** tagline ***/
.tagline-container p {
  font-size: 1.3em;
  text-align: center;
  margin-bottom: 0;
}

/******/
hr {
  border: 0;
  height: 1px;
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0), #46433A, rgba(0, 0, 0, 0));
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0), #46433A, rgba(0, 0, 0, 0));
  background-image: -ms-linear-gradient(left, rgba(0, 0, 0, 0), #46433A, rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0), #46433A, rgba(0, 0, 0, 0));
}

/*** footer ***/
footer {
  position: fixed;
  bottom: 0;
  right: 0;
  height: 20px;
}

.poweredby {
  font-family: "Arial Narrow", Arial;
  font-size: 0.6em;
  line-height: 0.6em;
  padding: 0 5px;
}

.social-icons {
  text-align: right;
}

/*** media queries ***/
/* X-Small devices (phones, 480px and up) */
@media (min-width: 480px) {
  /*body stays 480px wide past 480px wide and is kept centered */
  body {
    width: 480px;
    margin: 10% auto 0 auto;
  }
}
/* All other devices (768px and up) */
@media (min-width: 768px) {
  /* past 768px the layout is changed and the body has a fixed width of 680px
  to accomodate both the header column and the content column */
  body {
    width: 80%;
    /* border: red solid; */
    margin-top: 1%;
  }
  /* the header column stays left and has a dynamic width with all contents
  aligned right */
  header {
    float: left;
    width: 42%;
    text-align: right;
  }
  .author-container h1,
  .logo-container,
  .tagline-container p {
    text-align: right;
  }
  main {
    width: 54%;
    margin-left: 46%;
    padding: 0;
  }
}

/*# sourceMappingURL=homepage.css.map */