/* Import HTML5 boilerplate */
@import url("normalize.css");

/* Fonts */
@import url(http://fonts.googleapis.com/css?family=Cambo);

/* Styles */

html {
	height: 100%;
}
body {
  font-family: "Helvetica", "Arial", sans-serif;
	line-height: 180%;
  width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
  color: #666;
  display: table;
}

.container {
  display: table-cell;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
}

h1 {
  font-family: "Cambo", serif;
  font-size: 48px;
  color: #333;
  display: inline-block;
  border-right: 1px solid #ddd;
  margin-right: 40px;
  padding-right: 50px;
  line-height: 60px;
  vertical-align: middle;
  text-transform: lowercase;
}

ul {
  display: inline-block;
}
  li {
    display: inline-block;
  }
    li span {
      position: absolute;
      opacity: 0;
      margin-top: 80px;
      margin-left: -100px;
      text-transform: uppercase;
      font-size: 10px;
      display: inline-block;
      text-align: center;
      width: 100px;
      -webkit-transition: all 0.3s; -moz-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; 
    }
      li:hover span {   
        margin-top: 60px;
        opacity: 1;
      }

a {
  display: inline-block;
  height: 40px;
  width: 40px;
  margin-right: 30px;
  text-align: center;
  vertical-align: middle;
  background: #fff url("../img/sprite.png") top left;
  background-color: rgba(255,255,255,1);
  -webkit-border-radius: 100%; -moz-border-radius: 100%; border-radius: 100%;
  -webkit-transition: background-color 0.3s; -moz-transition: background-color 0.3s; -o-transition: background-color 0.3s; transition: background-color 0.3s; 
}
  a:hover {
    background-color: rgba(30,30,30,1);
  }
  a.email {
    background-position: 0 0; 
  }
    a.email:hover {
      background-position: 0 -40px; 
    }
  a.dribbble {
    background-position: -40px 0; 
  }
    a.dribbble:hover {
      background-position: -40px -40px;
    }
  a.themeforest {
    background-position: -80px 0; 
  }
    a.themeforest:hover {
      background-position: -80px -40px; 
    }
  a.twitter {
    background-position: -120px 0; 
  }
    a.twitter:hover {
      background-position: -120px -40px; 
    }