@import url("https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
  border: 0;
  font-family: 'Open Sans Condensed', sans-serif; }

main {
  width: 100%; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 700; }

p, a, figcaption {
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 300; }
  p h1, p h2, p h3, p h4, p h5, p h6, a h1, a h2, a h3, a h4, a h5, a h6, figcaption h1, figcaption h2, figcaption h3, figcaption h4, figcaption h5, figcaption h6 {
    font-weight: inherit; }

p {
  line-height: 1.5em; }
  p + h2 {
    margin-top: 1.5em; }

.socialbar {
  width: 100%;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-direction: row;
  flex-grow: 0;
  flex-shrink: 0;
  align-items: center;
  align-content: center;
  justify-content: center; }
  .socialbar .socialbar-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    margin: 20px 5px;
    opacity: 1;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .socialbar .socialbar-icon:nth-child(2) {
      -webkit-animation-delay: 0.2s;
      -moz-animation-delay: 0.2s;
      -o-animation-delay: 0.2s;
      animation-delay: 0.2s; }
    .socialbar .socialbar-icon:nth-child(3) {
      -webkit-animation-delay: 0.4s;
      -moz-animation-delay: 0.4s;
      -o-animation-delay: 0.4s;
      animation-delay: 0.4s; }
    .socialbar .socialbar-icon:hover {
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      transform: scale(1.1);
      -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.42);
      -moz-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.2);
      box-shadow: 2px 0 4px rgba(0, 0, 0, 0.2); }

@keyframes fadeInTop {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); } }
.profile {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-direction: column;
  flex-grow: 0;
  flex-shrink: 0;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 100%;
  height: 100vh; }
  .profile .profile-image img {
    position: relative;
    margin: 0 auto;
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 50%; }
  .profile .profile-image figcaption {
    text-align: center;
    font-size: 1.2em;
    line-height: 2em; }

#footer-main {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  text-align: center;
  background: #ffffff;
  z-index: 99; }
  #footer-main::before {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
    transform: translate(-50%);
    width: 80%;
    max-width: 600px;
    content: '\A';
    display: block;
    border-top: 1px solid #DDDDDD; }
  #footer-main .footer-link {
    display: inline-block;
    color: #DDDDDD;
    text-decoration: none; }

article {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4em 40px; }
  article h1 {
    text-align: center;
    font-size: 3em; }
    article h1 + * {
      margin-top: 2em; }

/*# sourceMappingURL=style.css.map */
