/* BASIC RULES */
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,700");
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 2em;
    font-family: Montserrat, sans-serif;
    font-size: 19px;
}
section > div {
    color: #333;
    text-align: center;
    padding: 1em;
    background: #FF8A65;
}
div:nth-child(even) {
    padding: 0;
}
section > *:nth-child(4n +1) {
    background: #80deea;
}
section > *:nth-child(4n +1) + div{
    background: #80deea;
}
.column {
    display: flex;
    flex-direction: column;
    height:50vh;
    flex-wrap: wrap;
    border: solid 1px #000;
}
.column div {
   width: 20%;
    
}
.row {
    display: flex;
    border: solid 1px black; 
    flex-wrap:wrap;
    justify-content: space-between;
}
.row > *  {
    width: 50%;
      flex-grow: 1;
    padding: 2em;
   /* margin: .15vw;*/
}
.row img {
    width: 100%;
    display: block;
}
/*.select {
    width: 65%; 
}
.select:hover + *,
.select:hover,
.select:hover {
 background: black;
    color: white;
} */