body {
  color: #1a2d69;
  font-size: 15px;
  font-family: 'eight-bit-dragon';
  
  line-height: 1.3;
  
  /* find a better background
  background-image: url(/background_images/metallicBlue.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: bottom;
  */
  
  background-color: #2c3e78
}

font {
  color: #a9b9eb;
}

h1 {
  font-family: 'rosie_brown_serif';
}

h2 {
  font-family: 'rosie_brown_serif';
}

 /*for glow effect*/
.brighten img {
  -webkit-filter: brightness(100%);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.brighten img:hover {
-webkit-filter: brightness(150%);
}
/*for glow effect*/
    
/*for shrink effect*/
.shrink img {
transition: 0.2s ease;
}

.shrink img:hover{
-webkit-transform: scale(0.8);
-ms-transform: scale(0.8);
transform: scale(0.8);
transition: 0.2s ease;
}
/*for shrink effect*