.flex-container {
  display: flex;
  height: 400px;
  /*align-items: center;*/ 
  /*flex-direction: row;*/
  background-color:rgb(180, 53, 53);
  justify-content: center;
	}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 19px;
    max-width: 1200px;
    margin: 35px;
    justify-items: center; 
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
	
    /*
    background-image: url("../img/fondo.jpeg");
	  background-repeat: no-repeat;
	  background-size: cover;
    */
	/*background: -webkit-linear-gradient(left, #3333ff, #C9DCB9); 
    /*background: -o-linear-gradient(right, #3333ff, #C9DCB9);
    background: -moz-linear-gradient(right, #3333ff, #C9DCB9); 
    /*background: linear-gradient(to right, #3333ff, #C9DCB9);
    background-color: #0099ff;
	*/
	
  }

p.primeralinea {
  text-indent: 40px;
  text-align: justify;
}

div.Car-Header {
	text-align: center;
	font-weight: bold;
	background-color: #b1b1bc;
}

#contenedor {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#contenedor > div {
  width: 50%;
}

/*Estilo para el listado de imagenes*/
/*#listimages img {width:100px;height:100px;}*/

/*Estilo para el fondo de pantalla cuando estamos mostrando la imagen grande*/
#background {
  display:none;
  position: absolute;
  top:0px;left:0px;width:100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  background-color: #000;
  z-index: 1;
}

/*Estilo para la capa que contendra la imagen grande y la cruz de cerrar*/
#preview {
  display: none;
  position: absolute;
  width: 350px;
  height: 780px;
  /*
  width: 700px;
  height: 700px;
  */
  border: 3px solid #D8D7D8;
  background-color: #FFF;
  box-shadow: 1px 1px 5px #DDD;
  z-index: 2;
}

/*Estilo para el contenedor de la imagen grande*/
#content {
  width:100%;
  height:100%;
}

/*Estilo para el boton cerrar*/
#close {
  position: absolute;
  border:0px solid;
  width:34px;
  height:34px;
  /*right:2px;*/
  top:2px;
  background:url('../img/close.png');
}


