/*
Coder:
Date:
Site:
File:
Comments:

*/

/*style away default padding and margins...put ones back in you want later*/
*{
    margin: 0px;
    padding: 0px;
}

html{
    background-color: #4D3A1C;
    font-family: 'Montserrat', sans-serif;
}

body{
    max-width: 800px;
    margin: auto;
    background-color: #387855;
    padding: 30px;
    padding-top: 0px;
    box-shadow: 0px 0px 20px black;
}

a{
    text-decoration: none;
}

/*----- header -----*/
header{
    background-color: #9b1304;
    margin-left: -30px;
    margin-right: -30px;
    padding: 30px;
    margin-bottom: 20px; 
}

img#mastheadImg{
    float: left;
    margin-right: 10px;
    margin-top: -5px;
    cursor: pointer;
}

div#headerText h1{
    margin-bottom: 5px;
}

/*----- nav -----*/
nav{
    margin-top: 20px;
}

header, nav a{
    color: #FFFC87;
}

nav a{
    margin-right: 15px;
}

/*----- main -----*/
main{
    /* -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1); */
    transform:scaleX(-1);
    background-image: url("../images/xmasTreeCandles.jpg");
    background-repeat: no-repeat;
    height: 790px;
    margin-top: 20px;
}

div#lyrics{
    /* -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1); */
    transform:scaleX(-1);
    color: #F6D19D;
    padding: 20px;
}

div#lyrics p{
    font-size: 1.2em;
    line-height: 22px;
    margin-bottom: 20px;
    font-weight: bolder;
    text-shadow: 1px 1px 2px black;
}

/*----- footer -----*/
footer{
    margin-top: 15px;
    color: lightgray;
}

div#footerContent{
    margin-top: 10px;
    margin-bottom: 10px;
}

footer a{
    color: lightGray;
    margin-right: 15px;
}


/*----- general classes, styles -----*/
.hide{
    display: none;
}

.accentFont1{
    font-family: 'Macondo', cursive;
}

a:hover{
    font-weight: bold;
}

a.active{
    text-decoration: underline;
}