/**
<p> will be uppercase
h3 will be yellow highlight, small, uppercase
h2 will be large type
h1 will be uppercase, white (whole center div using <span> for alt font)
**/
body {
  background-color: #E8E8E8;
  margin-top: 50px;
  margin-bottom: 50px;
}

#vision-board {
  width: 1200px;
  height: 850px;
  margin: auto;
  overflow: auto;
  background-image: url("../img/background.png");
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

.block {
  float: left;
  width: 400px;
  box-sizing: border-box;
  display: table;
}
.small-block {
  height: 210px;
}
.large-block {
  height: 430px;
}
.content-left {
  padding-left: 38px;
}
.content-center {
  text-align: center;
}
.content-right {
  text-align: right;
  padding-right: 38px;
}
.light-bg {
  background-color: #FFFFFF;
}
.dark-bg {
  background-color: #3B3B3B;
}
.v-align-center {
  display: table-cell;
  vertical-align: middle;
}

/** This is where I'll modify text styling **/
h1 {
  color: #FFFFFF;
  font-size: 30px;
}
h1 span {
  font-family: 'Permanent Marker';
}
h2 {
  font-size: 38px;
  text-transform: none;
  line-height: 10px;
}
h3 {
  line-height: 20px;
}
h3 span {
  background-color: #FFF44F;
  border-top: 5px solid #FFF44F;
  border-bottom: 5px solid #FFF44F;
  border-left: 15px solid #FFF44F;
  border-right: 15px solid #FFF44F;
}
