/*universal style sheet for entire site i guess*/


/*sitewide banner*/
.banner {
    /*static image*/
    position: relative;
    height: 150px;
    width: 100%;
    background-image: url("https://imgur.com/zAXQ9Vd.png");
    background-color: #00174a;
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
    background-attachment: scroll;

    /*gradient*/
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
}



body {

    height: 100%;

    margin: 0;
    padding: 0;

    background-color: black;

    /*font*/
    font-family: 'Josefin Sans', Verdana, Arial, sans-serif;
    color: #a38b7e;

    line-height: 1.5;
    font-size: 18px;

}
/*adjust body content container*/
.content {

    width: 88%;
    right: 0;
    top: 170px; /*check to accomodate banner and navbar*/
    position: absolute;
    background-color: black;

}

.content-body {
    padding: 50px 60px 20px 60px;
}

footer {
    text-align: center;
    position:relative;
    padding-top: 2000px; /*to stay on bottom*/ /*change as needed per page*/
    padding-bottom: 20px;

    z-index: -1;    /*don't override my buttons*/
}

/*for text decor*/

strong {
    color: indianred;
}

i {
    color: #c2b58e;
}

a {
    color: #c2b58e;
    text-decoration: none;
    font-weight:500;
}

a:hover {
    color: snow;
}

