/* LAYOUT */
body {
  color: #333;
  font-size: 125%;
  font-family: Roboto;
  font-weight: 300;
  line-height: 1.1;
  max-width: 50rem;
  padding: 1rem;
  margin: 0 auto;
}

.content {
  margin-bottom: 2rem;
}

blockquote {
  font-style: italic;
  background-color: #eee;
  line-height: 2rem;
}

a {
  color: #44e;
  /*text-decoration: none;*/
}

header {
  max-width: 60rem;
  margin-bottom: 1rem;
  height: 120px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

/* NAVIGATION */
.site-nav {
  display: flex;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.site-nav a {
  display: block;
  padding: 1rem;
  margin: 2px;
  background-color: #b0bec5;
  color: #263238;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
}

.site-nav .logo {
  font-weight: bold;
  height: 100%;
  display:flex;
  align-items: center;
  justify-content: center;
  color: #cfd8dc;
  background-color: #263238;
}

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 48rem) {
  .site-nav,
  .main-menu {
    flex-direction: column;
  }
  .site-nav a {
    padding: 0.5rem;
  }
}

/* LISTS */
.post-snippet {
  margin-bottom: 1rem;
}

.post-snippet h3 {
  margin-bottom: 0.25rem;
}

/* FOOTER */
footer {
  color: grey;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #b0bec5;
  border-radius: 5px;
  padding: 0 20px;
  margin: 0px;
}

.link-section {
  background-color: #cfd8dc;
  border-radius: 5px;
  padding: 0px 10px;
}

.contact-logo {
  margin: 5px 5px;
  height: 20px;
}
