/*
Madisen Caswell
ITWP 1050
This stylesheet applies styles to the Dracula webpage
*/

/* Universal selector to set the text color for all elements */
* {
	color: darkred; /* Gothic feel to fit the theme */
}

/* Body styling:
	a. Set the margin to 25 pixels 
	b. Set the font family to Arial, Helvetica, sans-serif 
	c. Set the font size to 1em 
	d. Center the text 
*/
body {
	margin: 25px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:1em;
	text-align: center;
}

/* styling for header */
h1{
	font-size: 2em;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
}

/*Syling for paragraphs for readability and better layout*/
 p{
	line-height: 1.6;
	max-width: 800px;
	margin: 0 auto 15px;
}

/* styling for image */
img {
	border: 1px solid black;
	border-radius: 10px;
	max-width: 100%;
	height: auto;
}

/* footer styling */
footer {
	margin-top: 50px;
	margin-bottom: 50px;
	padding: 10px;
}

/* footer style to remove bullet points */
footer ul{
		list-style-type: none;
		padding: 0;
}

/* stlying for links */
footer ul.sources a::after {
	content: " (external)";
	color: black;
	font-size: 0.8em;
	font-weight: bold;
}

/*styling for anchor tags*/
a {
	color: crimson;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}
