/**
 * You can put your custom css code in this file.
 * If you haven't don't know what css is, you can take a look at http://www.cssbasics.com/
 */

td.leftborder {
  border-left: 1px solid #979797;
}

a.light-pink-button {
  display:inline-block;
  width: 125px;
  height: 40px;
  border-radius: 3px;
  background-color: #fff9f5;
	font-size: 10px;
	letter-spacing: 2px;
	text-align: center;
	color: #1f1e26;
  font-weight: bold;
  line-height: 40px;
  text-transform: uppercase;
}


.bigfont {
  font-size: 36px;
  letter-spacing: 3px;
}

.mediumfont {
  font-size: 30px;
  letter-spacing: 2.4px;
}

.smallfont {
  font-size: 24px;
  letter-spacing: 1px;
}


@media screen and (max-width: 767px) {
  .bigfont {
    font-size: 28px;
    letter-spacing: 2.2px;
  }

  .mediumfont {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .smallfont {
    font-size: 16px;
    letter-spacing: 0.75px;
  }  
}

 

