/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	text-decoration:none;
	color:#000;
	font-weight:600;
}

div {
	box-sizing:border-box;
}

body {
	width:100%;
	height:100%;
	font-family: 'Raleway', sans-serif;
	font-size:1em;
	background-image: url(welcome.jpg);
	background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    /* background-attachment: fixed; removed for Android */
	  -webkit-background-size: cover;
	  -moz-background-size: cover;
	  -o-background-size: cover;
	  background-size: cover;
	  min-height:100%;
}

.fondo {
	width:100%;
	z-index:1;
	float:left;
}
.fondo img {
	position:relative;
	left: 50%;
    transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
    max-height:100%;
}
.logo {
	/*position:absolute;
	left: 50%;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
    top:20%;*/
    font-family: Copperplate, "Copperplate Gothic Light", fantasy;
    color:#fff;
    font-size:3em;
    padding-bottom:10px;
    width:70%;
    text-align:center;
    border-bottom:1px solid #fff;
    margin:0 auto;
    margin-top:100px;
}

.menu {
	/* position:absolute;
	top:32%;
	width:100%; */
	text-align:center;
	/* left: 50%;
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%); */
    width:70%;
    margin:0 auto;
    margin-top:30px;
    height:20px;	
}

.menu li {
	float:left;
	width:33%;
	text-align:center;
}

.menu a {
	text-decoration:none;
	color:#fff;
	font-size:1.2em;
}

.contenido {
	/* position: absolute;
    top: 300px; */
    text-align: center;
    width: 70%;
    line-height: 1.2em;
    background: rgba(255, 255, 255, 0.8);
    height: 300px;
    padding: 100px 50px;
    color: #000;
    /* left: 50%; */
    font-weight: 500;
    /* transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%); */
    border-radius: 20px;
    margin:30px auto;
} 

.contenido p {
	position: relative;
	top:50%;
	transform:translateY(-50%);
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
}

.footer {
	position:fixed;
	bottom:0px;
	padding:10px 0;
	width:100%;
	background: rgba(0, 0, 0, 0.5);
	color:#fff;
	font-size:0.7em;
	text-align:center;			
}

@media only screen and (max-width: 850px) {
    .logo {
    	font-size:1.7em;
    	width:90%;
    	top:15%;
    }

	.menu {
		top:28%;
	}
    
    .menu, .contenido {
		width:90%;	
	}
	.contenido {
		height:350px;
		padding:30px;	
	}
	body {
		min-height:700px;
	}
}