/* 
   Legendary Fifth District SAC style sheet 
   Filename: styles.css

   Author:  Charles Griffith, Jr.
   Date:    7/27/2019
   HTML5 and CSS3 Illustrated Unit G, Lessons
 */

/* reset styles */
html {
   font-size: 18px;
}
a, article, body, div, figcaption, figure, form, forms, footer, header, h1, h2, h3, h4, img, li, nav, ol, p, select, ul {
   border: 0;
   padding: 0;
   margin: 0;
}

img {
	max-width: 85%;        
    border: 10em;
    padding: 0.5em;
    margin: 0;
    clear: both;
   }	

   ol, ul {
   list-style-type: none;
}
   

/* body */
body {
   margin: 0 auto;
   font-family: Arial, Helvetica, sans-serif;
}
p {
   font-size: 1.3em;
   line-height: 1.6em;
   text-align: justify;
}

a:link {
   color: purple;
   font-size: 1.3em;
   background-color: gold;
   font-weight: 700;
}
a:visited {
   color: purple;
}

/* skip navigation link */
p.skipnavigation a {
   position: absolute;
   left: -10000px;
}
p.skipnavigation a:focus {
   color: purple;
   background-color: #34180f;
   top: 0.4em;
   left: auto;
   right: 0.4em;
   z-index: 2;
}

/* header section */
h1 {
   text-align: center;
   font-family: Bitter, "Times New Roman", Times, serif;
   font-weight: 700;
   color: purple;
   background-color: ivory;
   font-size: 2.4em;
}

/* site navigation bar */
nav.sitenavigation {
   color: purple;
   text-align: center;
   background-color: ivory;
}
nav.sitenavigation p {
   margin: 0.3em 0.5em;
   display: inline-block;
}
nav.sitenavigation a:link {
   text-decoration: none;
   color: purple;
}
nav.sitenavigation a:visited {
   color: purple;
}
nav.sitenavigation a:hover, nav.sitenavigation a:focus {
   color: black;
}

.top-link a, a {
   padding: 3px 6px;
   border: 2px solid #777
   display: inline-block;
   background-color: gold;
   border-radius; 0.6;   
}

/* main content */
article {
   margin: 0 auto;
   padding: 1.6em;
   background: gold;
   color: purple;
  }
article div {
   max-width: 1000px;
   margin: 0 auto;
   padding: 0 3% 1em;
   background-color: purple;
   overflow: auto;
   text-align: center;
}
h2 {
   padding: 0.4em 0.4em 0;
   text-align: center;
   font-family: Bitter, "Times New Roman", Times, serif;
   font-size: 2em;
   font-weight: 700;
   color: purple;
}
h3 {
   margin-top: 1.4em;
   font-size: 1.6em;
   font-family: Bitter, "Times New Roman", Times, serif;
   font-weight: 700;
   clear: both;
   color: purple;
   text-align: center;
}

h4 {
   margin-top: 1.4em;
   font-size: 1.3em;
   font-family: Bitter, "Times New Roman", Times, serif;
   font-weight: 700;
   clear: both;
   color: purple;
   text-align: justify;
}
article p {
   padding-top: 1em;
   color: ivory;
   font-weight: 700;
}
article p.pullquote {
   font-size: 1.7em;
}
article figure {
	max-width: 100%;
	margin-left: 3em;
	float: right;
}

article figure.example {
	margin-top: 2em;
}

article figcaption {
	text-align: center;

}

form, form target {
text-align: center;
color: gold;
font-weight: 700;
font-size: 18px;
font-size: 1.3em;
}

/* footer section */
footer {
   padding: 0.6em;
   background-color: purple;
   color: ivory;
   text-align: center;
}
.accent {
   font-weight: bold;
}

footer p {
   text-align: center;
   color: gold;
}

/* print styles */
@media print {
   body, h1, article, footer {
      color: rgb(0,0,0);
      background: rgb(255,255,255);
   }
   body {
      max-width: 100%;
   }
   nav {
      display: none;
   }
}
@page {
   margin: 0.75in;
}
