/* 
This is the main CSS for the website.
*/

h1
{
	font-family: Copperplate, Copperplate Gothic Light, sans-serif;
	font-size: 85px;
	color: #343b7f; /* This is a dark blue background colour. */
	border-bottom: solid 10px black;
	text-align: center;
} /* end of h1 rule */

body
{
	font-family: "Lucida Grande", Rockwell, Trebuchet, Georgia, Verdana;
	background-color: #f4d9d9; /* This is a light pink background colour. */
	margin: 5%;
	font-size: 24px;
} /* end of body rule */

p
{
	font-family: Verdana, Sans-Serif, Serif, Arial;
	color: white;
	background-color: gray;
	border-left: 8px solid red;
	margin: 30px;
	font-size: 22px;
	padding: 15px;
} /* end of p rule */

img
{
	display: block;
    margin-left: auto;
    margin-right: auto
} /* end of img rule */




/*

Creator:
Alymuhamad Walji

Pod 2 - ICS3U7 - Block A

*/