/* CSS for SpfldVT */

/* General */
/* Initialize global values. Could be in a reset CSS instead */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


/* Set page height */
html {
	height: 100%;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background-color: #C96;
}


/* Links */
a:link    { color: #006600; text-decoration: none;}
a:visited { color: #006600; text-decoration: none;}
a:active  { color: #0000CC; text-decoration: none;}
a:hover   { color: #CC0000; text-decoration: underline;}


/* Layout */
#main {
}


/* Text */
h1 {
	font-size: 2.5rem;
	font-weight: bold;
}

h2 {
	font-size: 1.5rem;
	font-weight: bold;
}

h3 {
	font-size: 1.25rem;
}

p.boldtext {
	font-weight: bold;
}

/* Images */
img {
	margin: 5px 10px 5px 10px;
}

img[alt="PDF"] {
	margin: 0;
}
