/* genstyle.css */

head {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #333;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the content */
.content {
  background-color: #696969;
  padding: 100px;
  padding-bottom: 10px;
  text-align: center;
  color: white;
}

/* Custom .content subclasses */
.content h1 {
	font-size: 32px;
	text-decoration: underline;
	text-decoration: bold;
}

.content h2 {
	font-size: 12px;
	text-decoration: italic;
}

.content a {
	color: #63D1F4
}

/* global (page) img sizing */
img {
	max-width: 100%;
	height: auto;
}

/* Style the footer */
.footer {
  background-color: #A4A4A4;
  padding: 5px;
  text-align: center;
  position: absolute;
  left: 0;
  width: 100%;
  font-size: 10px;
}
