/*
	References used:
	https://websitesetup.org/web-safe-fonts-html-css/ (List of default fonts)
	http://stackoverflow.com/questions/10000674/make-
	an-a-tag-move-onto-a-new-line-without-using-displayblock (Links on new lines)
	https://www.w3schools.com/cssref/sel_class.asp (Adding classes)
*/



body {
	font-family: "Garamond";

}

.nvg {
	float: left;
	clear: left;
}

section {
	clear: left;
	margin-bottom: 5rem;
}

a.inTextLink:hover {
	color: rgb(200,0,0);
}

a.inTextLink:focus {
	font-size: 1.5rem;
} 

p {
	width: 50rem;
}

.bStyle {
	background-color: red;
	border:3px solid black;
}

button.bStyle:hover {
	color: yellow;
}

button.bStyle:focus {
	background-color: green;
}