@import url('https://fonts.googleapis.com/css?family=Raleway|Roboto&display=swap');

/* --------------------------------------------- */
/* --------- Branding: Color Palette ----------- */
/* --------------------------------------------- */
/* These are the colors of the boxes under the Branding section */
#swatch1{
	background-color: #026274;
}	
#swatch2{
	background-color: #ca0036;
}	
#swatch3{
	background-color: #ee9700;
}	
#swatch4{
	background-color: #2e5809;
}		

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

body{
	font-family: 'Raleway', sans-serif;
}

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


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

/* Main Navigation Style */
#mainnav{
	background-color: #026274;
    padding: 25px;
}
#mainnav ul{
    padding: 0px;
}
#mainnav li{
    display: inline;
}
#mainnav a:link{
	color: #ffffff;
    text-decoration: none;
    margin: 5px 85px 0px 0px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1em;
    letter-spacing: 0.15em;
	/* other styles */
}
#mainnav a:visited{
	color: #cccccc;
	/* other styles */
}
#mainnav a:hover{
	color: #ffffff;
    background-color: #ca0036;
    border-top: 2px solid #ee9700;
    
	/* other styles */
}
#mainnav a:active{
	color: #ee9700;
	/* other styles */
}


/* Secondary Navigation Style */
#secondnav{
	background-color: #026274;
    padding: 25px;
}

}
#secondnav ul{
    padding: 0px;
}
#secondnav li{
    display: inline;
}
#secondnav a:link{
	color: #ffffff;
    text-decoration: none;
    margin: 5px 80px 0px 0px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1em;
    letter-spacing: 0.12em;
	/* other styles */
}
#secondnav a:visited{
	color: #cccccc;
	/* other styles */
}
#secondnav a:hover{
	color: #ffffff;
    background-color: #ca0036;
    border: 2px solid #ee9700;
	/* other styles */
}
#secondnav a:active{
	color: #ee9700;
	/* other styles */
}




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

/* True for all headings */
h1, h2, h3 ,h4, h5, h6{
	color: #026274;
    font-weight: bold;
    padding: 10px 0px;
    margin: 10px 0px;

}


/* 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{

}
ul li{

}

ol{

}
ol li{

}


/* Non-Navigational Link Styles */
/* This is for all default links on your page */
a:link{
    font-weight: bold;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    color: #2e5809;
    text-decoration: none;

}
a:visited{
    color: #2e5809;

}
a:hover{
    color: #ca0036;

}
a:active:{
   color: #ee9700;

}

/* This is for secondary link styles (possibly in your footer, etc) */
.linkstyle2 a:link{
    color: #ffffff;
    text-decoration: none;
    margin: 5px 80px 0 0;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1em;
    letter-spacing: 0.12em;

}
.linkstyle2 a:visited{
	color: #cccccc;
}
.linkstyle2 a:hover{
    color: #ffffff;
    background-color: #ca0036;
    border: 2px solid #ee9700;

}
.linkstyle2 a:active{
    color: #ee9700;

}


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


/* Figure and Figcaption Styles */
figure{
    text-align: justify;
    width: 200px;
    

}
figure img{
    border-radius: 10px;
    
}
figcaption{
    color: #2e5809;
    letter-spacing: 1px;

}












/* ------------------------------------- */
/* --------- 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: 170px;
}
.colorgroup h4{
	font-size: .9em;
}
.colorgroup p{
    font-size: .8em;
}
.clear{
    clear: both;
}
.swatches{
    width: 100px;
    height: 100px;
    border-radius: 10px;
}
