
	html {
		-webkit-font-smoothing: antialiased; 
	}
	
  body {
    padding: 0;
    margin: 0;
		background-color: #FFF; 
		height: 100%; 
    font-family: "HelveticaNeue", "Arial", "Roboto", sans-serif;
	}

  h1 {
  	font-size: 25px;
    letter-spacing: 0px;
    color: #222;
    font-weight: 100;
    position: absolute;
    margin-left: 8%;
    margin-right: 8%;
    top: 10%;
  }

  a {
    color: #222;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -ms-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease; 
  }

  a:hover {
    color: #f33;
  }

  a:after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: #ddd; 
    width: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
 
  a:hover:after {
    width: 100%;
    background: #f33; 
  }

  h2 {
    font-weight: 100;
    font-size:  12px;
    color: #222;
    position: absolute;
    margin-left: 8%;
    margin-right: 8%;
    bottom: 10%;

  }