@import url('https://fonts.googleapis.com/css?family=Crafty+Girls');

/* --------------------------------------------- */
/* --------- Branding: Color Palette ----------- */
/* --------------------------------------------- */
/* These are the colors of the boxes under the Branding section */
#swatch1{
	background-color: #9ACCC7;
}	
#swatch2{
	background-color: #F2A391;
}	
#swatch3{
	background-color: #686767;
}	
#swatch4{
	background-color: #fbefec;
}		

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

body{
	font-family: Tahoma, Geneva, sans-serif;
}

h1,h2,h3,h4,h5,h6{
	font-family: 'Crafty Girls', cursive;
}


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

/* Main Navigation Style */
#mainnav2 {
	margin: 0px;
}

nav div {
	width: 78px;
	height: 78px;
	color: white;
	text-align: center;
	float: left;
}

nav div a {
	background-color: #F49292;
	display: block;
	border-radius: 50px;
	padding: 18px 8px 44px 8px;
	margin: 0px;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: .9em;
}

#mainnav2 a:link{
	color: #686767;
	text-decoration: none;
	font-weight: bold;	
}

#mainnav2 a:visited{
	color: #686767;
}

#mainnav2 a:hover {
	background-color: #9accc7;
}

#mainnav2 a:active{
	color: white;
	background-color: #9ACCC7;
}

.current {
	background-color: #fce7e2;
}

/* Secondary Navigation Style */
#secondnav{
	background-color: #686767;
	margin: 10px 0px 0px 0px;
	padding: 10px;
	text-align: center;
}
#secondnav ul{
	padding: 0px;
}
#secondnav li{
	display: inline;
	padding-right: 20px;
}
#secondnav a:link{
	color: #F49292;
	text-decoration: none;
	margin-right: 20px;
	font-weight: normal;
	/* other styles */
}
#secondnav a:visited{
	color: #F49292;
	/* other styles */
}
#secondnav a:hover{
	color: #9ACCC7;
	/* other styles */
}
#secondnav a:active{
	color: #fff;
	/* other styles */
}




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

/* True for all headings */
h1, h2, h3 ,h4, h5, h6{
	color: #686767;
	margin: 30px 0px -5px -10px;
}


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

h2{
  font-size: 3.25em;
}

h3{
  font-size: 2.75em;
}

h4{
  font-size: 2.25em;
}

h5{
  font-size: 2em;
}

h6{
  font-size: 1.75em;
}


/* List Styles */
ul{
 color: #4C4C4C;
	font-weight: bold;
	margin-left: 30px;
	list-style-position: inside;
}
ul li{

}

ol{
  color: #4C4C4C;
	font-weight: bold;
	list-style-type: upper-roman; 
	list-style-position: inside;
	margin-left: 30px;
}
ol li{

}


/* Non-Navigational Link Styles */
/* This is for all default links on your page */
a:link{
  color: #9ACCC7;
	text-decoration: none;
}
a:visited{
  color: #9ACCC7;
}
a:hover{
  color: #686767;
}
a:active{
  color: #e5faf8;
}

/* This is for secondary link styles (possibly in your footer, etc) */
.linkstyle2 a:link{

}
.linkstyle2 a:visited{

}
.linkstyle2 a:hover{

}
.linkstyle2 a:active{

}


/* Paragraph Styles */
p{
	color:#F49292;
	/* Other paragraph styles */
}


/* Figure and Figcaption Styles */
figure{
  text-align: center;
	width: 250px;
}
figure img{
  border-radius: 500px;
	border: 4px solid #9ACCC7;
}
figcaption{
  font-family: 'Crafty Girls', cursive;
	color: #9ACCC7;
	font-size: 1.5em;
}












/* ------------------------------------- */
/* --------- 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;
}
