* { box-sizing: border-box; }
body { margin: 0.3rem; font-family: Avenir, Roboto, Helvetica, san-serif; 
  font-size: 90%; background: #FFFFFF;}

.flex-container{
	display: flex;
	/*flex-flow: wrap;*//*también vale*/
	flex-wrap: wrap;
	justify-content: center;
	background:#FFFFFF;;
}
article {
  display: flex;
  flex-flow: column;
  justify-content: center;
  background: #FFFFFF;;
  /*padding: 0.5rem;*/
}
h1 {
  margin: 1em 0 0;
  line-height: 1.2;
  font-weight: normal;
  font-size: 1.3em;
  /*font-size: 14px;*/
 }
p {
  margin: 0.6em 0 2rem;
  /*font-size: 0.7em;*/
  font-size: 1em;
  }
img {
  /*order: -1;
  align-self: center;*/
  width: 90%;
  display: flex;
  justify-content: center;
}
a {
  /*display: block;*/
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: auto; 
  /*background: #B0B5C2;*/
  /*color: white;*/
  background: #FFFFFF;
  /*color: #333399;*/
  color:#EE383B;
  text-decoration: none;
  font-size: 0.7em;
  text-transform: uppercase;
  letter-spacing: 0px;
  padding: 0.1rem 0 0.1rem;
  line-height: 1.4;
}
.footer{
	display:flex;
	flex-flow: row;
}
