* {
  outline: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  font-family: 'Open Sans', sans-serif;
  color: #ffffff;
  background-color: #131516;
  font-weight: 400;
  width: 100%;
  height: 100%;
  margin: 0;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

h2 {
  margin: 0 0 20px 0;
  font-weight: 600;
  font-size: 36px;
  color: #333;
}

h3,
h4 {
  font-size: 20px;
  font-weight: 400;
  color: #333;
}

h5 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
}

p {
  font-size: 15px;
}

a {
  text-decoration: none;
  color: #6aaf08;
  font-weight: 400;
  transition: 0.25s ease-in-out;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #ffffff;
}

a,
a:visited,
a:focus,
a:active,
a:link,
a:hover {
  text-decoration: none;
  outline: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

.calloutbutton {
	border-radius: 4px;
	transition: 0.25s;
	padding: 16px 24px;
	font-size: 16px;
	font-weight: 600;
}

.calloutbuttonprimary {
	background-color: #222;
	color: #6aaf08;
	outline: none;
}

.calloutbuttonprimary:hover,
.calloutbuttonprimary:active,
.calloutbuttonprimary:focus {
	background-color: #131516;
	color: #5f9d07;
}

.calloutbuttonsecondary {
	background-color: #ffffff;
	color: #000;
	outline: none;
}

.calloutbuttonsecondary:hover,
.calloutbuttonsecondary:active,
.calloutbuttonsecondary:focus {
	background-color: #ccc;
	color: #333;
}

strong {
  font-weight: 600;
}

main {
  padding: 70px 20px 0;
  display: flex;
  flex-direction: column;
  /*height: 100%;*/
}

main>div {
  margin: auto;
  max-width: 600px;
}

main h2 span {
  color: #6aaf08;
}

main p {
  line-height: 1.5;
  font-weight: 200;
  margin: 20px 0;
}

main small {
  font-weight: 300;
  color: #5f9d07;
}

.small {
  display: flex;
  align-self: center;
}

.small a {
  font-size: 12px;
  font-weight: 400;
  color: #6aaf08;
}

.small a+a {
  margin-left: 15px;
}

#nav-container:focus-within #nav-content {
  transform: none;
}

img {
  vertical-align: middle;
  height: auto;
  width: 100%;
}

.TextDanger {
  color: #cc0033;
  text-align: left;
  margin: 0;
}