/* Flex-related code */
.flexZ {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Or space-between or space-around or center */
}

.flexZ > section {
  align-items: center;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  text-align: center;
  max-width: 400px;
}

.flexZ > section > p {
  flex-grow: 1;
}
/* This rule ist just because of the responsive images */
@media (max-width: 1600px) {
  .flexZ > section {  
    max-width: 250px;
  }
}

.flexZ ul {
  display: flex;
  justify-content: space-between;
}

.flexZ aside {
  width: 100%;
}



.flexZ img {
  width: 400px;
  border-radius: 2px;
}

@media (max-width: 1600px) {
.flexZ  img{
    width: 250px;
  }
}
.flexZ h1 {
  color: #777380;
  font-weight: 200;
  font-size: 35px;
}

.flexZ h2 {
  font-size: 25px;
}

.flexZ > section {
  background: #f7f7f7;
  padding: 1em;
  margin: 0.5em;
  border-radius: 4px;
  
}

.flexZ button {
  background: #009999 url(http://i.imgur.com/RWKrr8S.png);
  background-repeat: no-repeat;
  background-position: 2em 50%;
  background-size: 2em;
  border: 0;  
  border-radius: 4px;
  cursor: pointer;
  color: #FFF;  
  font-weight: bold;
  font-size: 13px;
  padding: 1.5em 3em;
  padding-left: 6em;
  text-transform: uppercase;
  display: block;
  width: 100%;
}

.flexZ button:hover {
  background-color: #006B6B;
  background-size: 3em;
  background-position: 1.5em 50%;
}

.flexZ  ul {
  list-style-type: none;
  padding: 0;
}

.flexZ  li {
  background: #eee;
  font-weight: 700;
  padding: 0.3em 0.6em;
  border-radius: 1em;
}  
