/* alters opacity of background image - 8.3.16 */
/* set background  eg   background: #FFFFFF; white  in container to avoid coloring image
set background in body to alter whole screen
#b7a5a6 gives light grey red
*/

body {
  background: ;
  padding: 0px 0;
}

.my-container {
    position: relative;
   background: #FFFFFF;
    overflow: hidden;
    color: #000000;
}
.my-container h1 {
    padding: 15px;
    text-align: center;
    z-index: 2;
    position: relative;

} 
.my-container h2 {
    padding: 10px;
    text-align: center;
    z-index: 2;
    position: relative;

} 
.my-container h3 {
    padding: 30px;
    text-align: center;
    z-index: 2;
    position: relative;
} 
.my-container img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    opacity: 0.3;
}
