@charset "UTF-8";
/* Author: Sejin 
	Date : 6 October 2023
*/
body {
	background-color: aliceblue;
}

/* Element Selector */

h1 {
	text-align: center;
	font-family: 'Paytone One', sans-serif;
	font-size: 32pt;
	background-color:darksalmon;
		
}

h2 {
	color: cadetblue;
	font-family: 'PT Sans', sans-serif;
	font-size: 16pt
}

p {
	font-family: 'PT Sans', sans-serif;
	margin-bottom: 16pt;
}


/* ID Selector */

#notes {
	font-weight:bold;
	color:darkorange;
	font-size: 16pt;
	font-style: italic;
	text-decoration: underline;
}

/* Child Selector */
ul.list > li {
	font-family: 'PT Sans', sans-serif;
	margin-bottom: 10pt;
}

li {
	font-family: 'PT Sans', sans-serif;
	margin-bottom: 10pt;
}

/* Pseudo Class Selector */
a:hover {
	text-decoration:underline;
	color:coral;
}

	
	

