html, body {
	background-color: #555555;
	height: 100%;
}

#main {
	background-color: white;
	width: 80%;
	margin: auto;
	border: 1px pink solid;
	/*overflow: auto;*/
}

header {
	height: 200px;
	background-image: url('../Images/header.png');
	background-size: 100%;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}

nav li {
    float: left;
}

nav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav li a:hover {
    background-color: #111;
}

#content {
	min-height: 60%;
	background-color: white;
	width: 100%;
	border: 1px green solid;
}

#content img {
	width: 20%;
	vertical-align: top;
	display: inline-block;
}

#content p {
	width: 59%;
	vertical-align: top;
	display: inline-block;
}

#golfbag {
	float: right;
	width: 20%;
	border-radius: 10px;
}

#rightPicts {
	float: left;
	height: 60%;
	width: 30%;
}

#rightPicts img {
	width: 90%;
	border-radius: 10px;
	margin: 1vw;
}

.floatclear {
	clear: both;
}

.formLabel {
	display: inline-block;
}

.formContent {
	display: inline-block;
}

footer {
	height: 10vh;
	background-color: #333333;
}

h3 {
	color: green;
	font-size: 30px;
}

span {
  	color: blue;
  	font-size: 20px;
  	font-weight: bold;
  }

.generalInput {
  width: 375px;
  display: block;
  border: 1px solid #999;
  height: 25px;
  margin-bottom: 20px;
}

.clickInput
{
  border: 1px solid #999;
  margin-bottom: 7px;
  margin-right: 10px;
}

.errorMessage {
	color: red;
  	font-size: 15px;
  	font-weight: bold;
}

