@import url("https://fonts.googleapis.com/css?family=Source+Serif+Pro|Lato:400,700");
body {
  padding: 0;
  margin: 0 auto;
  background-color: white;
  font-family: "Source Serif Pro", serif;
  font-size: 1.1em; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Lato", sans-serif;
  font-weight: 400; }

a {
  color: #3f77cc;
  text-decoration: none; }

#header {
  display: flex;
  height: 5rem;
  background-color: #5286d6;
  color: white;
  flex-direction: row;
  align-items: center; }
  #header .logo {
    height: 5rem;
    width: 5rem; }
  #header menu {
    font-family: "Lato", sans-serif;
    font-size: 1.3rem; }
    #header menu menuitem {
      text-transform: uppercase;
      font-weight: 500; }
      #header menu menuitem:not(:first-child) {
        margin-left: 2rem; }
      #header menu menuitem a {
        color: white; }

main {
  flex: 1 auto; }
  main div.container {
    max-width: 680px;
    margin: 0 auto; }
    main div.container img {
      max-width: 600px; }

article.episode {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center; }

.episode-list .episode {
  border-bottom: solid 1px #e8e8e8; }
  .episode-list .episode h2 {
    color: #3f77cc;
    margin-bottom: 0; }
  .episode-list .episode h3 {
    margin-top: 0;
    color: #a2aba9; }

.podcast-player {
  width: 100%;
  padding: 5px 5px;
  background: #2b599f;
  color: white;
  margin-bottom: 32px; }
  .podcast-player .title {
    margin-bottom: 10px;
    font-weight: 500; }
  .podcast-player audio {
    width: 100%;
    background: #5286d6; }
