html,body {
	min-width: 100%;
	min-height: 100%;
	width: 100%;
	height: 100%;
	color: #ecf0f1;
	font-family: "Roboto";
	font-size: 1.2rem;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

body {
	background: url("../img/bg_new.jpg") no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

a:link,
a:hover,
a:visited,
a:active {
	color: #ecf0f1;
	text-transform: none;
	text-decoration: none;
}

.overlay {
	height: 100%;
	width: 100%;
	margin: 0 auto;
	padding: 0px 0px 0px 0px;
	background: rgba(0,0,0,0.65);
}

.center {
	margin: 0 auto;
	text-align: center;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%); /* Safari and Chrome */
   	-moz-transform: translateY(-50%); /* Firefox */
    -ms-transform: translateY(-50%); /* IE 9 */
    -o-transform: translateY(-50%); /* Opera */
    transform: translateY(-50%);
	width: 100%;
}

.center h1 {
	margin: 10px;
}

.center .hello {
	font-weight: 300;
}

.center .description {
	font-weight: 100;
}

.center ul {
	list-style: none;
	padding: 0px;
}

.center li {
	display: inline;
}

a.red-link:link,
a.red-link:hover,
a.red-link:visited,
a.red-link:active {
	color: #e74c3c;
}

.social-link {
	margin-top: 10px;
	padding: 8px 15px;
	display: inline-block;
	color: #ecf0f1;
}

.link:hover,
.social-link:hover {
	cursor: pointer;
}

.social-facebook:hover {
    color: #3b5998;
}
.social-twitter:hover {
    color: #55acee;
}
.social-linkedin:hover {
    color: #0976b4;
}
.social-github:hover {
	color: #666;
}
.social-googleplus:hover {
	color: #dd4b39;
}

::-moz-selection { /* Code for Firefox */
    color: #ecf0f1;
    background: #e74c3c;
}

::selection {
    color: #ecf0f1; 
    background: #e74c3c;
}

/* BETTER RESPONSIVE */

@media (max-device-width: 768px) {

	html, body {
		font-size: 45px;
	}

	.overlay {
		padding: 1rem;
	}

	.center .description {
		margin-top: 30px;
		font-size: 1rem;
	}

	.center li {
		display: inline-block;
	}

	.social-link {
		margin-top: 10px;
		font-weight: 100;
		padding: 10px 20px;
		display: inline-block;
	}
}