@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css');
 @import url('https://fonts.googleapis.com/css?family=Exo+2:700|Open+Sans:300');
 * {
	 outline: none;
}
 body .center {
	 -webkit-transform: translate(-50%,-50%);
	 -moz-transform: translate(-50%,-50%);
	 -ms-transform: translate(-50%,-50%);
	 -o-transform: translate(-50%,-50%);
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 text-align: center;
}
 body .center h1 {
	 color: #fff;
	 font-family: 'Exo 2', sans-serif;
	 padding: 0;
	 margin: 0;
}
 body .center h1 span {
	 color: #2bbc73;
}
 body .center p {
	 font-family: 'Open sans', sans-serif;
	 padding: 0;
	 margin: 0;
	 font-size: 11px;
	 color: #aaa;
}
 #click-me {
	 -webkit-transition: all 0.35s ease-in-out;
	 -moz-transition: all 0.35s ease-in-out;
	 transition: all 0.35s ease-in-out;
	 -webkit-border-radius: 50%;
	 -moz-border-radius: 50%;
	 border-radius: 50%;
	 -moz-background-clip: padding;
	 -webkit-background-clip: padding-box;
	 background-clip: padding-box;
	 -webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.3);
	 -moz-box-shadow: 0 0 15px 0 rgba(0,0,0,0.3);
	 box-shadow: 0 0 15px 0 rgba(0,0,0,0.3);
	 position: fixed;
	 right: 50px;
	 bottom: 40px;
	 height: 55px;
	 width: 55px;
	 line-height: 15px;
	 font-size: 20px;
	 padding: 10px;
	 border: 0;
	 color: #fff;
	 text-align: center;
	 background: #c54987;
	 cursor: pointer;
	 border: 1px solid #c54987;
	 -moz-animation: shakeme 3s infinite;
	 -o-animation: shakeme 3s infinite;
	 -webkit-animation: shakeme 3s infinite;
	 animation: shakeme 3s infinite;
}
 #click-me:hover {
	 font-size: 24px;
	 background: #2bbc73;
	 border: 1px solid #2bbc73;
	 color: #fff;
}
 @keyframes shakeme {
	 0% {
		 -webkit-transform: scale(1);
		 -moz-transform: scale(1);
		 -ms-transform: scale(1);
		 -o-transform: scale(1);
	}
	 5% {
		 -webkit-transform: scale(0.7);
		 -moz-transform: scale(0.7);
		 -ms-transform: scale(0.7);
		 -o-transform: scale(0.7);
	}
	 10% {
		 -webkit-transform: scale(1.5);
		 -moz-transform: scale(1.5);
		 -ms-transform: scale(1.5);
		 -o-transform: scale(1.5);
	}
	 15% {
		 -webkit-transform: scale(1.1);
		 -moz-transform: scale(1.1);
		 -ms-transform: scale(1.1);
		 -o-transform: scale(1.1);
	}
	 20% {
		 -webkit-transform: scale(1.4);
		 -moz-transform: scale(1.4);
		 -ms-transform: scale(1.4);
		 -o-transform: scale(1.4);
	}
	 30% {
		 -webkit-transform: scale(1.1);
		 -moz-transform: scale(1.1);
		 -ms-transform: scale(1.1);
		 -o-transform: scale(1.1);
	}
}
