/*
CSS3.
	Regla del 0,0
	Carga de fuentes
	Body
	Contendor
	Contenido
	
Colores:


*/

/*Regla del 0,0*/
* {
	margin:0px;
	padding: 0px;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
	color: #000;
	font: menu;
	font-size: 16px;
}
/*Se quitan todos los bordes a las imagenes, para Internet Explorer*/
img {
    border:none;
}

/* Cargamos las fuentes para mostrar la pagina*/

body {
    min-height: 100vh;
    min-height: fill-available;
    min-height: -webkit-fill-available;
}
html {
    height: fill-available;
    height: -webkit-fill-available;
}


/*Le damos un color al fondo y una fuente para toda la pagina*/
body {
	background-color:white;	
}
.imagenPrinc{
	width: 100%;
	max-height: 500px;
	min-height:auto;
	overflow:hidden;
	margin-top: 1%;
}

.imagenPrinc img{
	width:100%;
}

.textoPrinc div{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-bottom: 1%;
}



.pieFoto{
	font-family: 'Savoy';	
	text-align:right;
	margin-right: 2%;
	font-size: 28px;
}


.titulo{
	font-size: 50px;
	font-family: 'Savoy';
}

@media (max-width: 800px){
	.titulo{
		font-size: 40px;
	}
}



