@import url(https://fonts.googleapis.com/css?family=Lora:700italic,400);
/* --------------------------------------------- */
/* --------- Branding: Color Palette ----------- */
/* --------------------------------------------- */
/* These are the colors of the boxes under the Branding section */
#swatch1{
    background-color: #430107;
}	
#swatch2{
    background-color: #005683;
}	
#swatch3{
    background-color: #DDD9DE;
}	
#swatch4{
    background-color: #2B2B2B;
}

/* ----------------------------------------------------- */
/* --------- Typography: Heading & Body Copy ----------- */
/* ----------------------------------------------------- */
/* These are the font families of all the headings and body copy */

body{
    font-family: "Trebuchet MS", Helvetica, sans-serif;

}

h1,h2,h3,h4,h5,h6{
  font-family: 'Lora', serif;
}


/* -------------------------------------------------- */
/* --------- Navigation: Main & Secondary ----------- */
/* -------------------------------------------------- */
/* Colors, style, floating, shapes, etc of main & secondary navs */

/* Main Navigation Style */
#mainnav{
    background-color: #430107;
    padding: 8px;
    text-align: center;
}
#mainnav ul{
    padding: 0;
    
}
#mainnav li{
    display: inline;
}
#mainnav a:link{
    color:  #DDD9DE;
    text-decoration: none;
    margin: 10px 40px 0px 0px;
    text-transform: uppercase;
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    letter-spacing: .2em;
    font-size: 1em;
    padding: 0px;
    /* other styles */
}
#mainnav a:visited{
    color: #DDD9DE;
    /* other styles */
}
#mainnav a:hover{
    color: #005683;
    border: solid .5px #005683;
    
    /* other styles */
}
#mainnav a:active{
    color: #DDD9DE;
    /* other styles */
}


/* Secondary Navigation Style */
#secondnav{
    background-color: #005683;
    padding:  3px;
    text-align: center;
}
#secondnav ul{
    padding: 0;
}
#secondnav li{
display: inline;

}
#secondnav a:link{
    color:  #DDD9DE;
    text-decoration: none;
    margin: 5px 45px 0px 0px;
    text-transform: uppercase;
    font-family: "Trebuchet MS", Helvetica, sans-serif;
    letter-spacing: .2em;
    font-size: 1em;
    padding: 0px;
    /* other styles */
}
#secondnav a:visited{
    color: #DDD9DE;
    /* other styles */
}
#secondnav a:hover{
    color: #430107;
    border: solid .5px #430107;

    /* other styles */
}
#secondnav a:active{
      color: #DDD9DE;
    /* other styles */
}




/* ----------------------------------- */
/* --------- HTML Elements ----------- */
/* ----------------------------------- */
/* Styling for all HTML Elements */

/* True for all headings */
h1, h2, h3 ,h4, h5, h6{
    color: #430107;
    font-weight: 700;
    font-style: italic;
}


/* Style for individual headings */
h1{
    font-size: 4em;

}

h2{
     font-size: 3.5em;
}

h3{
font-size: 3em;
}

h4{
font-size: 2.5em;
}

h5{
font-size: 2em;
}

h6{
font-size: 1.5em;
}


/* List Styles */
ul{
    color: #2b2b2b;
   
}
ul li{
 letter-spacing: 1px;
}

ol{
  color: #2b2b2b;
}
ol li{
    letter-spacing: 1px;
}


/* Non-Navigational Link Styles */
/* This is for all default links on your page */
a:link{
    font-weight: 600;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #005683;
    text-decoration: none;
}
a:visited{
    color: #2B2B2B; 
}
a:hover{
    color: #C2BD04;
}
a:active{
    color: #2b2b2b;
}


/* Paragraph Styles */
p{
    color: #2b2b2b;
    letter-spacing: 1px;
    text-align: justify;
    /* Other paragraph styles */
}


/* Figure and Figcaption Styles */
figure{
    text-align: center;
    
}

figcaption{
     font-family: 'Lora', serif;
    font-style: italic;

    
}












/* ------------------------------------- */
/* --------- Style Guide CSS ----------- */
/* ------------------------------------- */
/* The following CSS is used for the styling of the structure of the Style Guide itself */
body{
    width: 700px;
    margin: 10px auto;
    border: 1px solid #777;
    padding: 20px;
}

.styleguide{
    font-family: "Courier New", Courier, monospace;
}
h1.styleguide, h2.styleguide, h3.styleguide, h4.styleguide, h5.styleguide, h6.styleguide{
    color: #777;
    font-family: "Courier New", Courier, monospace;
}
h2.styleguide{
    background-color: #777;
    border-radius: 15px;
    padding: 15px;
    margin-left: -15px;
    color: white;
}
p.styleguide{
    color: #777;
    font-family: "Courier New", Courier, monospace;
}

section{
    margin-top: -10px;
    margin-bottom: 70px; 
}
.colorgroup{
    float: left;
    width: 160px;
}
.colorgroup h4{
    font-size: .9em;
}
.colorgroup p{
    font-size: .8em;
}
.clear{
    clear: both;
}
.swatches{
    width: 100px;
    height: 100px;
    border-radius: 10px;
}
