
/* Base Styles */


.small {
  height: 50px;
}

.small .logo {
	font-size: 2.6em;
	margin-top: 5px;
}

nav {
	position: fixed;
}

.logo {
	font-family: 'Lobster', cursive;
	font-size: 4em;
	font-weight: 400;
	float: left;
	padding: 5px;
	margin-top: 25px;
}

.social-buttons {
  height: 90px;
  margin: auto;
  font-size: 0;
  text-align: center;
  position: absolute;
  top: 450px;
  bottom: 0;
  left: 0;
  right: 0;
}

.social-button {
  display: inline-block;
  background-color: #fff;
  width: 90px;
  height: 90px;
  line-height: 90px;
  margin: 0 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: .99;
  border-radius: 28%;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
  transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
}
.social-button:before {
  content: '';
  background-color: #000;
  width: 120%;
  height: 120%;
  position: absolute;
  top: 90%;
  left: -110%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
  transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
}
.social-button .fa {
  font-size: 50px;
  vertical-align: middle;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
  transition: all 0.35s cubic-bezier(0.31, -0.105, 0.43, 1.59);
}

//Facbook
.social-button.facebook:before {
  background-color: #3B5998;
}
.social-button.facebook .fa {
  color: #3B5998;
}

//Twitter
.social-button.twitter:before {
  background-color: #55acee;
}
.social-button.twitter .fa {
  color: #55acee;
}

//Linkedin
.social-button.linkedin:before {
  background-color: #007bb5;
}
.social-button.linkedin .fa {
  color: #007bb5;
}

//wordpress
.social-button.wordpress:before {
  background-color: #767676;
}
.social-button.wordpress .fa {
  color: #767676;
}

//Email
.social-button.email:before {
  background-color: #4caf50;
}
.social-button.email .fa {
  color: #4caf50;
}

//Youtube
.social-button.youtube:before {
  background-color: #bb0000;
}
.social-button.youtube .fa {
  color: #bb0000;
}

//Instagram
.social-button.instagram:before {
  background-color: #e95950;
}
.social-button.instagram .fa {
  color: #e95950;
}

//Flickr
.social-button.flickr:before {
  background-color: #ff0084;
}
.social-button.flickr .fa {
  color: #ff0084;
}

//Spotify
.social-button.spotify:before {
  background-color: #00e461;
}
.social-button.spotify .fa {
  color: #00e461;
}

//Github
.social-button.github:before {
  background-color: #000000;
}
.social-button.github .fa {
  color: #000000;
}

//RSS 
.social-button.rss:before {
  background-color: #ff6600;
}
.social-button.rss .fa {
  color: #ff6600;
}

//soundcloud
.social-button.soundcloud:before {
  background-color: #ff7f34;
}
.social-button.soundcloud .fa {
  color: #ff7f34;
}


.social-button:focus:before, .social-button:hover:before {
  top: -10%;
  left: -10%;
}
.social-button:focus .fa, .social-button:hover .fa {
  color: #fff;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.logo {
	font-family: 'Lobster', cursive;
	font-size: 4em;
	font-weight: 400;
	float: left;
	padding: 5px;
	margin-top: 25px;
}

/* Transitions */

header, .logo{
	-webkit-transition: all 1s;
          transition: all 1s; 
}
