@import url(https://fonts.googleapis.com/css?family=Raleway:300,400,600);.welcome {
  font-size: 1.1em;
  text-align: center;
}

.topheader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 140px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px;
  z-index: 2;
}

.buttomfooter {
  width: 100%;
  height: 110px;
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

.buttomfooter a {
  text-decoration: none;
}

.player {
  width: 100%;
}

.player__audio {
  width: 100%;
}

.player__header {
  font-weight: 500px;
  margin-bottom: 20px;
}

.player__header span {
  font-weight: 800;
}

.podcast {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 280px;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  overflow: hidden;
}

.podcast__details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px;
}

.podcast__sub {
  font-weight: 500;
}

.podcast__header {
  font-size: 1.6em;
}

.podcast__header a {
  text-decoration: none;
}

.podcast__play {
  width: 15%;
  display: none;
  background-color: #387bc9;
  overflow: hidden;
  align-item: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -webkit-transition: margin-left 180ms ease-in-out;
  transition: margin-left 180ms ease-in-out;
}

.podcast__play:hover .podcast__playbutton {
  -webkit-transform: scale(3.5) rotate(-10deg);
          transform: scale(3.5) rotate(-10deg);
  opacity: 1;
}

.podcast__play--hidden {
  margin-left: -15%;
}

.podcast__playbutton {
  color: #222;
  opacity: .4;
  width: 60%;
  -webkit-transition: all 180ms ease-in-out;
  transition: all 180ms ease-in-out;
}

@media only screen and (min-width: 768px) {
  .podcast__play {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.load-more {
  display: block;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  text-align: center;
  margin-bottom: 40px;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #2c3e50;
  background-color: #edeff0;
  margin-top: calc(140px + (20px * 2));
}

p {
  line-height: 1.5;
}

a {
  color: rgba(56, 123, 201, 0.9);
  -webkit-transition: color 100ms ease-in;
  transition: color 100ms ease-in;
}

a:hover {
  color: #387bc9;
}

.container {
  max-width: 780px;
  margin: 0 auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.fade-enter-active,
.fade-enter-leave {
  -webkit-transition: opacity 500ms ease-in-out;
  transition: opacity 500ms ease-in-out;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

