/* Hewwo, welcome to my CSS stylesheet for a friend pwoject :3 */

/* Font families */
 h1, h2, h3, h4, h5, h6 {
	 font-family: 'times new roman', cambria;
	 font-size: 18pt;
	 color: white;
 }

p, a {
	font-family: 'LovemeChainV2MonoLight', cambria;
	font-weight: normal;
	font-style: normal;
	font-size: 14pt;
	color: white;
}

p#plug {
	font-family: 'LovemechainV2MonoLight', cambria;
	font-weight: normal;
	font-style: normal;
	font-size: 8pt;
	color: white;
	float: right;
	cursor: url('images/kittycursor.webp'), default;
}

p#plug:hover {
	float: left;
	cursor: url('images/kittycursor.webp'), default;
}

/* Font families */

/* Structural */
html {
	background-image: linear-gradient(to bottom, #242424, #676767);
}


header {
	display: block;
	background-color: #de4575;
	margin-left: 10%;
	margin-right: 10%;
	padding: 1%;
}

body section {
	display: block;
	background-color: #de7845;
	margin-left: 10%;
	margin-right: 10%;
	padding: 1%;
}

footer {
	display: block;
	background-color: #de4575;
	margin-left: 10%;
	margin-right: 10%;
	padding: 1%;
}

/* Structural */

/* Links and Navigation */
nav ul li {
	list-style: inside;
}
	
	
a:hover, a:active {
	color: lightpink;
	text-decoration: underline;
	cursor: pointer;
}

a:visited {
	color: lightgray;
}


/* Links and Navigation */