a { color: lightgrey
}
 .splashImage {
  transition: transform 0.3s ease-in-out;
  margin-top: 3em;
  height: 40em;
}
     .hide {
  display: none;
}

.myDIV:hover + .hide {
  display: block;
  color: red;
}
       .half {
  width:50%;
  display: table-cell;
}
.column {
  float: left;
  padding: 10px;
  height: 100%;
}

.left, .right {
  width: 25%;
}

.middle {
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
