.row {
    width: 100%;
    height: 100%;
    display:table-row;
}
.col-left, .col-right {
    display:table-cell;
    width: 50%;
    height: 100%;
    vertical-align:middle;
}
.col-left {
    background: MidnightBlue
}
.col-right {
    background: ForestGreen;
    text-align: center;
}

blockquote {
  font-style: italic
}

.info-tile {
  height: 20vw;
  width: 30vw;
  max-width: 290px;
  max-height: 150px;
  background: #ef69b9;
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  word-wrap: break-word;
  line-height: 5vw;
  font-size: 7vw;
  color: white;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin:0.5%
}

.info-tile:hover {
  opacity:0.5;
}

.info-tile-large-text {
  display: inline-block;
  padding-left: 1vw;
  margin-top: 2.5vw;
  margin-bottom:4vw;
}

.info-tile-small-text {
  display: inline-block;
  font-size: 40%;
  padding-left: 1vw;
}

.info-tile-img {
  position: absolute;
  left: 52%;
  top: 15%;
  opacity: .4;
  height: 10vw;
  font-size:10vw;
}

.info-tile-big {
  height: 20vw;
  width: 45vw;
  max-width: 440px;
  max-height: 200px;
  background: #ef69b9;
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  word-wrap: break-word;
  line-height: 5vw;
  font-size: 6vw;
  color: white;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin:0.5%
}

.info-tile-big:hover {
  opacity:0.5;
}

.info-tile-large-text {
  display: inline-block;
  padding-left: 1vw;
  margin-top: 2.5vw;
  margin-bottom:4vw;
}

.info-tile-small-text {
  display: inline-block;
  font-size: 40%;
  padding-left: 1vw;
}

.info-tile-img {
  position: relative;
  left: 52%;
  top: 15%;
  opacity: .4;
  height: 10vw;
  font-size:10vw;
}

@media screen and (min-width: 1000px) {
  .info-tile {
    font-size: 50px;
    line-height: 65px;
  }
  
  .info-tile-large-text {
    display: inline-block;
    padding-left: 10px;
    margin-top: 25px;
    margin-bottom: 20px;
  }
  
  .info-tile-small-text {
    display: inline-block;
    font-size: 40%;
    padding-left: 10px;
  }
  
  .info-tile-img{
    position: absolute;
    left: 52%;
    top: 15%;
    opacity: .4;
    height: 100px;
    font-size: 100px;
  }
}
.blackbox {
  padding: 2em;
  /*background: black;*/
  background-image: url(images/blackstuff.png);
  opacity: 0.5;
  color: white;
  border: 2px solid grey;
  /*border-radius: 10px;*/
}
.center {
  text-align: center;
}

.blackbox:hover{
  opacity: 1.0;
}
 /* unvisited link */
a:link {
  color: red;
}

/* visited link */
a:visited {
  color: green;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

/* selected link */
a:active {
  color: blue;
} 