body, html {
  height: 100%
}

body {
  font-family: Source Sans Pro, -apple-system, Helvetica, Avenir Next, sans-serif;
  color:#383838;
  background-color: #fbfbfb;
}

h1{
  font-weight: 100;
}

.container {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.bio {
  width: 50%;
}

.bio-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0px 40px;
}

.bio-img-container {
  width: 20%;
}

/* Animation from https://codepen.io/themechills/pen/dMamgG*/

@keyframes fadeInUp {
  from {
      transform: translate3d(0,40px,0)
  }

  to {
      transform: translate3d(0,0,0);
      opacity: 1
  }
}

@-webkit-keyframes fadeInUp {
  from {
      transform: translate3d(0,40px,0)
  }

  to {
      transform: translate3d(0,0,0);
      opacity: 1
  }
}

.animated {
  animation-duration: 1.25s;
  animation-fill-mode: both;
  -webkit-animation-duration: 1.25s;
  -webkit-animation-fill-mode: both
}

.animatedFadeInUp {
  opacity: 0
}

.fadeInUp {
  opacity: 0;
  animation-name: fadeInUp;
  -webkit-animation-name: fadeInUp;
}

.subtitle {
  opacity: 0.75;
}

h2 {
  font-weight: 300;
}

a {
  text-decoration: none;
  color: rgb(0, 0, 238);
}

.social-container {
  width: 70%;
}

ul {
  padding-inline-start: 0px;
}
ul > a > li {
  display: inline;
  margin-right: 10px;
}

@media only screen and (max-width: 575.98px) {
  .container {
    padding: 20px;
  }

  .bio-img-container {
    display: none;
  }

  .bio {
    width: 100%;
  }

  .social-container {
    width: 100%;
  }
}
