/* **************** */
/* © Nel Muñiz 2015 */
/* **************** */

/* BACKGROUND IMAGE */
/* **************** */

body {
	background-image: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url(background_l.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-color: #464646;
	}

/* Mobile devices background image */
@media only screen and (max-width: 767px) {
	body {
		background-image: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url(background_s.jpg);
	}
}

/* BASIC SETTINGS */
/* ************** */

/* Reset */
html, body, h1, p, a, div, section {
	margin: 0;
	padding: 0;
}

/* Font */
body { 
	font-family: 'Amatic SC', cursive;
	color: #ffffff;
}

/* CONTENT */
/* ******* */

.content{
	text-align: center;
}

.content h1 {
	font-size:30vw;
	white-space: nowrap;
}

.content a {
	display: inline-block;
	border: 2px solid white;
	font-size: 5vw;
	line-height: 7vw;
	border-radius: 10vw;
	padding: 0px 3vw;
	text-decoration: none;
	margin-right: 1vw;
	color: white;
	white-space: nowrap;
}

/* Mobile devices links size*/
@media only screen and (max-width: 767px) {
	.content a {
		font-size: 20vw;
		line-height: 20vw;
		width: 70vw;
		border-radius: 30vw;
		margin: 0vw 0vw 10vw;
		padding: 1vw 10vw 3vw;
	}
	
	.content h1{
		margin-bottom: 10vh;
	}
}