body {
    background: linear-gradient(to bottom, #D3D3D3, #808080);
}

html, body {
    height: 100%; 
    margin: 0;
}

h1, h2, h3 {
	font-family: "Garamond", serif;
	font-weight: lighter;
	color: black;
	padding-left: 30px;

}

h1 {
	font-size: 100pt;
	text-align: left;
	font-style: italic;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);

}

h2 {
	font-size: 25pt;
	text-align: left;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);

}

h3 {
	font-size: 14pt;
	
}

p {
	font-size: 12pt;
}

.navbar {
	background-color: dimgray;
	overflow: hidden;
	display: flex;
	justify-content: center;
	padding: 10px 0;
	font-weight: lighter;
}

.navbar a {
	color: white;
	text-decoration: none;
	padding: 14px 20px;
	text-align: center;
	font-size: 18pt;
	transition: background 0.3s;
}

.navbar a:hover {
	font-weight: bold;
	font-style: italic;
	color: black;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);

}