/*
	Name: Emre Gul
	Date: 10/8/21
*/

/*	body	*/

body	{
	background-color: chocolate;
}

/*	link	*/

a	{
	color:navy;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	text-decoration:none;
}
a:visited	{
	color:white;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	text-decoration:none;
	background-color: orange;
}
a:hover	{
	color:navy;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	text-decoration:underline;
	background-color: yellow;
}
a:active	{
	color:pink;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	text-decoration:overline;
	background-color: red;
}

/*	headings	*/

h1	{
	font-size: 20pt;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 0.2em;
	word-spacing: 0.5em;
	background-color: orange;
	
}

h2	{
	font-family: arial, helvetica, sans-serif;
	font-size: 16pt;
	text-align: left;
	background-color:salmon;
	
}
h1, h2, h3, h4, h5, h6	{
	color: blue;
}
/*	paragraph	*/

p	{
	font-size: 14pt	;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	color:MidnightBlue	;
	line-height: 2;
	margin:0;
}

em	{
	font-weight:700;
}

li, ol	{
	color: purple;
	font-size: 1em;
	list-style-type: upper-alpha;
}
strong	{
	font-style: small-caps;
}

.left	{
	text-align:left;
}
p.right	{
	text-align: right;
}

strong, em	{
	color: lavender;
}
footer	{
	text-align:center;
}




















