/* Remove list element bullets (helps with navigation bar) */
li {
	list-style: none;
}

/* Change how the width and height of an element are calculated */
/* Set font size */
html {
	box-sizing: border-box;
	font-size: 18px;
}

/* Set all image elements to scale with the web page */
img {
	height: auto;
	max-width: 100%;
}

/* All elements, all elements before, and all elements after will inherit their
   box sizing from the html element. */
*, *:before, *:after {
	box-sizing: inherit;
}

/* Set ALL elements to use a font of Padauk, then Arial if Padauk is not
   available, then Times New Roman if Arial is not available */
* {
	font-family: Padauk, Arial, "Times New Roman";
}

/* Background colors and border colors */
header, nav, main, footer {
	background-color:#baeaff;
	border: 3px solid #468bb5;
}

/* Set up the main element to hold two columns */
.flex_column {
	display: flex;
}

/* Columns */
.col_1 {
	padding: 5px;
	width: 50%;
}

.col_2 {
	border-left: 3px solid #468bb5;
	padding: 5px;
	width: 50%;
}

header.col_1 {
	border-bottom: none;
	border-right: none;
}

nav.col_2 {
	border-bottom: none;
	border-left: none;
}

/* Simple Horizontal Navigation Bar */
.h_nav {
	background-color: #84bfd6;
	border: 1px solid #468bb5;
	font-size: .8em;
	text-align: center;
	width: 33.33%;
}

nav {
	min-width: 300px;
}

ul li a {
	display: block;
}

.h_nav:hover {
	background-color: #78adc2;
}

.h_nav a:hover {
	color: white;
}

/* Remove the link colors blue for link and purple for visited, remove the
   underline */
a:link, a:visited {
	color: black;
	text-decoration: none;
}

/* Misc */
main {
	border-bottom: none;
}

body {
	min-width: 800px;
}

footer {
	padding: 5px;
}

/* Canvas border and background color*/
canvas{
	border: 1px solid black;
	background-color: white;
}

/* Make the buttons bigger */
button {
	width: 150px;
	height: 45px;
	font-size: 16px;
}
