/*
font-family: 'Montserrat', sans-serif;
font-family: 'Old Standard TT', serif;
font-family: 'Arapey', serif;
*/
html ,
body {
	margin: 0;
	padding: 0;
	height: 100%;
}
body {
}
.apertura {
	background-image: url(../img/fondo.png);
	background-size: cover;
	background-color: rgba(40, 82, 80, 0.75);
	color: white;

	height: inherit;
 	-ms-display: flex;
	display: flex;
	/* vertical center */
 	align-items: center;
	/* horizontal center */
	justify-content: space-around;
    flex-direction: column;
}

.header {
	/*border: 1px solid red;*/
}
.header h1 {
	font-family: "Montserrat", "HelveticaNeue", "Helvetica Neue", sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 1.6875em;
}

.cuerpo {
	/*border: 1px solid blue;*/
}
.cuerpo h2 {
	font-family: "Old Standard TT",serif;
	font-weight: 400;
	line-height: 1.25;
	font-style: normal;
	text-transform: none;
	letter-spacing: 0;
	text-rendering: optimizeLegibility;
	font-size: 4em;
}

.pie {
	/*border: 1px solid green;*/
}
.pie h3 {
	font-family: 'Arapey', serif;
	letter-spacing: 1px;
}
@media screen and (max-width: 600px) {
	.cuerpo h2 {
		font-size: 2.5em;
	}
}
@media screen and (max-width: 380px) {
	.cuerpo h2 {
		font-size: 2em;
	}
}