* {
    margin: 0;
    padding: 0;
}
html {
    font-size: 62.5%;
}
body {
    background: url('../gfx/flops-bg.jpg') 0 0 repeat;
    color: #ff0;
    /*font-family: 'Architects Daughter', cursive;*/
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6em;
    font-weight: normal;
    line-height: 1.5;
    text-shadow: 2px 2px #000;
}
    img {
        max-width: 90%;
    }
    a {
        color: #90B804;
        text-decoration: none;
    }
    a:hover {
        text-decoration: underline;
    }
    .row {
        padding: 0 13px;
    }
    h1.title {
      font-size: 5em;
      line-height: 1.2;
      padding-top: 30px;
      text-align: center;
    }
    .profile {
        color: pink;
        text-align: right;
        width: 100%;
    }
    .profile img {
        border: 3px solid pink;
        border-radius: 50%;
        height: 100px;
        margin: 10px 5px 0 0;
        width: auto;
    }
    .content {
      padding-bottom: 30px;
      position: absolute;;
      top: 50%;
      left: 50%;
      min-width: 300px;
      text-align: center;
      transform: translate(-50%, -50%);
      width: 100%;
    }
        .content .text h1 {
          line-height: 1;
          margin: 10px 0;
        }
/* Responsive */
@media screen and (max-width: 500px){
  h1.title {
    font-size: 3em;
  }
  h1 {
    font-size: 1.5em;
  }
  .profile {
    text-align: center;
  }
  .content {
    position: relative;
    top: 5%;
    transform: translate(-50%, 0);
  }
}