
body {

	/* Centrado vertical y horizontal */
	background-position: center center;
	
	/* Imagen de fondo sin repetición */
	background-repeat: no-repeat;
	
	/* Imagen de fondo fija en el viewport. No se mueve cuando la altura del contenido supere la altura de la imagen. */
	background-attachment: fixed;
	
	/* Imagen de fondo con reescalado al cambiar el ancho de ventana del navegador */
	background-size: contain;
	
	/* Color de fondo */
	background-color: #FFFFFF;

}


/* Extra Large Desktop */
@media (min-width: 1600px) {

	body {
		background-image: url(../images/backgrounds/navich_info_1600_.png);
	}
		
}
	
/* Large Desktop */
@media (max-width: 1599px) and (min-width: 1200px) {

	body {
		background-image: url(../images/backgrounds/navich_info_1200_1599.png);
	}
	
}

/* Medium Desktop */
@media (max-width: 1199px) and (min-width: 992px) {

	body {
		background-image: url(../images/backgrounds/navich_info_992_1199.png);
	}
	
}

/* Tablets */
@media (max-width: 991px) and (min-width: 768px) {

	body {
		background-image: url(../images/backgrounds/navich_info_768_991.png);
	}
	
}

/* Phones */
@media (max-width: 767px) {

	body {
		background-image: url(../images/backgrounds/navich_info_0_767.png);
	}
	
}
	
