@charset "utf-8";
/* CSS Document */

/* styles.css */
/* ITWP 1050 */
/* Tom Nahas */
/* Restyling the Colorodo newsletter from straight HTML to a styled page */


/* Global Variable for black */
:root {
	--blackColor: #000000;
}

/* Bringing in the web font */
@font-face {
  font-family: 'Title Font';
  src: url('webfonts/AmaticSC-Bold.ttf') format('truetype');
  font-style: normal;
}

/* body fonts and background color*/
body {
	font-family: Arial, Helvetica, sans-serif;
	background-color: rgba(102,204,255,.4);
}


/* text properties within a paragrah*/
p {
	text-indent: 1em;
	line-height: 1.5em;
	font-size: 1.5vw;
}

/* Heading 1 using a webfont*/
h1 {
	font-family: Title Font, Arial, Helvetica, sans-serif;
	font-size: 7vw;
	text-shadow: 1px 1px 4px #336699;
}

/* Heading 2 sets a bkground image with white text*/
h2 {
	background: url("images/coloradomountains_bkgd.jpg") repeat center;
	color: white;
	text-shadow: 1px 1px 5px var(--blackColor);
	padding: 25px;
	border: 2px inset var(--blackColor);
	font-variant: small-caps;
	box-shadow: 5px 10px 20px #336699 inset;
	font: 3vw;
}

/* Heading 3 variable black and smaller*/
h3 {
	font-variant: normal;
	padding: 4px;
	font-size: 2vw;
	border-bottom: 2px solid var(--blackColor);
}

/* Heading 4 padding and smaller*/
h4 {
	font-variant: normal;
	padding: 5px;
	font-size: 1.75vw;
}
/* Heading 5 italic slategray and smaller*/
h5 {
	font-style: italic;
	color: darkslategray;
	font-size: 1vw;
}

/* class so all images float right with a margin and border*/
img {
	float: right;
	margin: 0px 15px 15px 15px;
	border: 1px solid var(--blackColor);
}

/* Ste Flag in H1 will float left*/
.stateflag {
	float: left;
	border: 1px inset #FFFFFF;
	box-shadow: 0px 3px 3px 1px var(--blackColor);
}

/* highlight area for certain paragraphs*/
.highlightSection {
	padding: 10px;
	background-color: white;
	box-shadow: 1px 1px 2px 1px steelblue;
}

/* format for the copyrught text*/
.copyright {
	font-size: 9px;
	font-style: italic;
	text-align: center;
	padding: 10px;
}

/* style for lists*/
ul li {
	line-height: 1.5em;
	font-size: 1.5vw;
}

/* the validation ID*/
#validation {
	text-align: center;
	font-size: 11px;
}


/* These are pseudo classes for the hyperlinks*/
a {
	text-decoration: underline;
	color: var(--blackColor);
	
}

a:link {
	text-decoration: underline;
	color: var(--blackColor);
	font-weight: bold;
}

a:visited {
	text-decoration: underline;
	color: darkblue;
}

a:hover {
	text-decoration: none;
	color: darkred;
	font-weight: bold;
}

a:active {
	text-decoration: underline;
	text-decoration-style: wavy;
	color: darkred;
	font-weight: bold;
}
	
	
	
	
	
	
	
	
	
	
	
	
	
	

	
	