/* Watermark */

#wrapper {
    background: none !important; /* Remove main background image */
    position: relative;
}

/* Add an overlay to control opacity */
#wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* &#128071; YOUR WATERMARK IMAGE &#128071; */
    background: url('/crest_watermark.png') no-repeat right center;
    
    /* &#128071; CONTROL IMAGE SIZE HERE &#128071; */
    background-size: 50% auto; /* adjust width here */
    
    background-attachment: fixed;
    opacity: 0.1; /* Adjust transparency */
    z-index: -1;
}

#wrapper,
#content01 {
    background: transparent !important;
    position: relative;
}

/* End */

h1,
h2,
h3,
h4,
p,
a,
li {

    color: #206398
}