   	body {
	  font-family: "Andale Mono", AndaleMono, monospace;
	  color: #333;
	}

	h1, h2, h3, h4 {
	  font-family: "Times New Roman", Times, serif;
	  text-transform: uppercase;
	}
	
	h5, h6 {}

	.image_caption {
      transition: .5s ease;
      opacity: 0;
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      text-align: center;
      text-transform: uppercase;
    }

    .image_with_caption {
        opacity: 1;
        transition: .5s ease;
    }

    .responsive_image_container:hover .image_caption {
      opacity: 1;
    }

    .responsive_image_container:hover .image_with_caption {
      opacity: 0.3;
    }