body {
  background: #fff;
  color: #4A4A4A;
  font-family: Roboto;
  margin: 0; }

.flex-container {
  display: flex;
  justify-content: space-between; }

header .title {
  font-size: 26px;
  font-weight: bold;
  padding: 25px 0; }
header .social a {
  display: inline-block;
  font-size: 18px;
  padding: 30px 0 0 10px; }

.intro {
  background-image: linear-gradient(-180deg, #45A8E8 0%, #415EE5 100%);
  padding-bottom: 100px; }

.container {
  margin: 0 auto;
  padding: 0 5px;
  position: relative;
  max-width: 747px; }

.about {
  max-width: 747px;
  padding: 100px 0 100px;
  text-align: center;
  color: #fff; }
  .about .avatar {
    border: 2px solid #fff;
    border-radius: 100px;
    width: 100px; }
  .about h1 {
    font-size: 32px; }
  .about p {
    font-size: 18px;
    color: #acddfc;
    line-height: 1.6; }
  .about .lead {
    font-size: 26px;
    font-weight: normal; }
  .about a {
    color: #acddfc;
    text-decoration: none;
    border-bottom: 1px solid #fff; }
    .about a:hover {
      color: #83cbfb; }
  .about a.btn {
    border: 1px solid #fff;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    margin-top: 15px;
    padding: 10px 15px;
    text-decoration: none; }
    .about a.btn:hover {
      text-decoration: underline; }
  .about .fa-linkedin {
    margin-right: 5px; }

.waves {
  position: absolute;
  width: 100%;
  height: 100px;
  margin-top: 1px; }

.wave {
  position: absolute;
  height: 100px;
  z-index: 1; }

.wave + .wave {
  z-index: 2; }

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@-moz-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.fade-in {
  opacity: 0;
  /* make things invisible upon start */
  -webkit-animation: fadeIn ease-in 1;
  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;
  -webkit-animation-fill-mode: forwards;
  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s; }

.fade-in.one {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s; }

.fade-in.two {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  animation-delay: 1.2s; }

.fade-in.three {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s; }

.fade-in.four {
  -webkit-animation-delay: 2.6s;
  -moz-animation-delay: 2.6s;
  animation-delay: 2.6s; }

.portfolio .project {
  margin: 75px 0; }
.portfolio .work {
  text-align: center; }
  .portfolio .work img {
    max-width: 100%;
    margin: 15px 0; }
.portfolio .npr-programs .work img {
  width: 75%; }
.portfolio .npr-music .work img {
  width: 70%; }
.portfolio .npr-election .work img {
  width: 70%; }
.portfolio .capital-one .work img {
  width: 70%; }
.portfolio .title {
  font-size: 32px;
  margin: 15px 0; }
.portfolio p {
  font-size: 18px;
  margin: 15px 0; }
.portfolio .btn {
  background-color: #def1fe;
  border-radius: 4px;
  color: #59BAF9;
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  margin: 15px 0;
  padding: 15px 25px;
  text-decoration: none; }
  .portfolio .btn:hover {
    text-decoration: underline; }

footer {
  background: #efefef;
  font-size: 12px;
  padding: 20px 0 100px; }
  footer a {
    text-decoration: none;
    border-bottom: 1px solid #59BAF9;
    color: #4A4A4A; }
    footer a:hover {
      color: #a5a5a5; }

@media only screen and (max-width: 600px) {
  .container {
    padding: 0 15px; }

  .about {
    padding: 50px 0; }
    .about h1 {
      font-size: 26px; }
    .about .lead {
      font-size: 22px; }
      .about .lead br {
        display: none; }
    .about p {
      font-size: 16px; }

  .portfolio .livesafe .work img {
    width: 100%; }
  .portfolio .npr-programs .work img {
    width: 100%; }
  .portfolio .npr-music .work img {
    width: 100%; }
  .portfolio .npr-election .work img {
    width: 100%; }
  .portfolio .capital-one .work img {
    width: 100%; } }
