/* Homework 2 CSS
Name: Jade Holt
Date: 3/19/2020 
Incorporating tags and and techniques to the webpage that was created.*/

/*adding body font stack */
body{
font-family:'OpenSans', Constantia,"Times New Roman", serif;
font-size: 1em;}

/*h1 style*/
h1{font-family:'OpenSans', Constantia,"Times New Roman", serif;
	font-weight:bold;
	font-variant:small-caps;
	font-size:3em;}
h2{font-family:'OpenSans', Constantia,"Times New Roman", serif;
	font-weight:bold;
	font-variant:small-caps;
	font-size:2em;}


/*paragraph style*/
*{font-weight:bold;}
p{color:#808080;}
p+p{color:#808080;}
p+p{color:#808080;}

/*image border*/
img{
	padding:3px;
	border:1px solid #021a40;
}
/*hyperlink style*/
a{text-decoration:none;
font-size:2em;}
a:link{color:#008000;/*green*/
		border-bottom:1px solid;}
a:visited{color:#ff0000;/*red*/
		border-bottom:1px solid;} 
a:hover{color:blue;
border-bottom:1px solid;}
a:active{color:pink;
border-bottom:1px solid;}
		

/*using web font*/
@font-face{ font-family: 'OpenSans ';
			src: url('../open-sans/OpenSans-Bold.ttf') format('truetype');
				font-weight:bold;}
@font-face{font-family:'OpenSans';
			src: url('../open-sans/OpenSans-BoldItalic.ttf') format('truetype');
                 font-weight:bold ;
				 font-style:italic;}
@font-face{font-family:'OpenSans';
		src: url('../open-sans/OpenSans-ExtraBold.ttf') format('truetype');
				font-weight:500;}
@font-face{font-family:'OpenSans';
			src: url('../open-sans/OpenSans-ExtraBoldItalic.ttf') format('truetype');
			font-weight:500;
			font-style:italic;}
@font-face{font-family:'OpenSans';
			src: url('../open-sans/OpenSans-Italic.ttf') format('truetype');
			font-style:italic;}
@font-face{font-family:'OpenSans';
		src: url('../open-sans/OpenSans-Light.ttf') format('truetype');
		font-weight:100;}
@font-face{font-family:'OpenSans';
			src:url('../open-sans/OpenSansLightItalic.ttf') format('truetype');
			font-weight:100;
			font-style:italic;}
@font-face{font-family:'OpenSans';
		src: url('../open-sans/OPenSans-Regular.ttf') format('truetype');
			font-weight:normal;}
@font-face{font-family:'OpenSans';
		src: url('../open-sans/OpenSans-SemiBold.ttf') format('truetype');
		font-weight:200; }
@font-face{font-family:'OpenSans';
			src:url('../open-sans/OpenSans-SemiBoldItalic.ttf') format('truetype');
			font-weight:200;
			font-style:italic; }


	
