/* Global */

body {
	font-family: Helvetica;
	margin: 0;
	font-family: Lato;
	color: #696d72;
	box-sizing: border-box;
	background-color:white;
}

p {
	margin: 0;
	font-size: 1.3em;
	font-weight: 300;
	line-height: 1.5em;
}
.modal-content b {
	margin: 0;
	font-size: 1.3em;
	line-height: 1.5em;
}
li {
    margin: 0;
	font-size: 1.3em;
	font-weight: 300;
	line-height: 1.5em;
  list-style-position: outside;
}

h1 {
	font-size: 1.8em;
}

h2 {
	font-size: 2em;
}


h1,
h2 {
	color: #595a5b;
}

a {
	color: #bac700;
}

.n-link {
    color:white;
}
.h2-w {
    color:white;
}

/* Header */

header {
	width: 100%;
	text-align: center;
	border-bottom: 2px solid;
	box-sizing: border-box;
}


.nav a {
	background-color: #55b81f;
	color: white;
	text-decoration: none;
	padding: 4px;
	border-radius: 7%;
}

.header {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	padding-right: 20px;
}

header h1 {
	color: white;
	padding-top: 50px;
}

.nav {
	list-style: none;
	display: flex;
}

.nav:not(:first-child) li {
	margin-left: 20px;
}

.nav li {
	text-transform: uppercase;
	font-weight: 600;
}

.logo {
	transition-duration: 0.5s;
}

.logo img {
	width: 200px;
	margin-left: 30px;
	margin-top: 10px;
}

.logo:hover {
	transform: scale(1.05);
}

.nav {
	padding: 18px 0 20px 0;
}

/* Main Content */

.main-content {
	width: 95%;
	text-align: center;
	margin: 0 auto;
}
.main-contentform {
	width: 95%;
	text-align: center;
	margin: 0 auto;
}
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #bac700;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.form {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
  width:90%;
  margin: 0;
}
.button4 {
  background-color: red; 
  border: 2px solid red;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}
.button4:hover {
    border: 2px solid white;
    cursor: pointer;
}
table p {
    width:80%;
    margin:0 auto;
}
td p {
    width:80%;
    margin-left:auto;
    margin-right:auto;
}
/* Footer */

footer {
	background-color: #595a5b;
	color: white;
	padding: 20px 0;
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
	width:100%;
}

footer p {
	padding: 0 0 0 30px;
}

/* Media Queries */
@media(min-width: 700px) {
	h1 {
		font-size: 3.5em;
	}
	.header {
		justify-content: space-between;
		padding-right: none;
	}
	.picture-container {
		padding: 0 10px 0 0;
	}
	.nav a {
		padding: 8px;
	}
}