body {
  font-family: 'Lato';
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: 100%;
  margin: 0 auto;
}

.title {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  opacity: 0.5;
  font-weight: 400;
  letter-spacing: 5px;
}

.flex-container {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.flex-item {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
  background: black;
  padding: 10px;
  width: 300px;
  height: 130px;
  color: white;
  font-weight: bold;
  font-weight: 900;
  font-style: italic;
  font-size: 2em;
  text-align: center;
  text-transform: uppercase;
  word-wrap: break-word;
  overflow: hidden;
}

.flex-item:hover {
  background: #ff6c00;
  cursor: pointer;
}

.image-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.image-wrapper img {
  height: 60%;
  width: 60%;
}

.content {
  margin-top: 50px;
}

header { 
  padding: .5vw;
  font-size: 0;
  display: -ms-flexbox;
  -ms-flex-wrap: wrap;
  -ms-flex-direction: column;
  -webkit-flex-flow: row wrap; 
  flex-flow: row wrap; 
  display: -webkit-box;
  display: flex;
}
header div { 
  -webkit-box-flex: auto;
  -ms-flex: auto;
  flex: auto; 
  width: 200px; 
  margin: .5vw; 
}
header div img { 
  width: 100%; 
  height: auto; 
}
@media screen and (max-width: 400px) {
  header div { margin: 0; }
  header { padding: 0; }
  
}

.galeria {
  text-align: center;
  margin-top: 50px;
}