/*
Coder:
Date:
Site:
File: respFunctionDelightStyles.css
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;
}

nav a{
    margin-right: 15px;
}

header, nav a{
    color: #FFFC87;
}


/*----- 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;
}

/*----- media queries -----*/
@media (max-width: 600px) {
    body {
      background-color: #29593e;
    }

    div#lyrics p{
        font-size: 3vw;
        line-height: 3.5vw;
    }
}

@media (max-width: 500px) {
    header{
        padding: 10px;
    }

    header h1{
        font-size: 6vw;
    }

    header h4{
        font-size: 3vw;
    }

    header a{
        font-size: 3vw;
    }

    header img{
        width: 80px;
        height: auto;
        margin-bottom: 30px;
    }

    footer{
        font-size: 3vw;
    }
}

@media (max-width: 400px) {
    body {
      background-color: #0d4425;
    }

    div#lyrics p{
        font-size: 3.5vw;
        line-height: 4vw;
    }

    
}