html {
	width: 100%;
	height: 100%;
	background: #f3f3f3;
	overflow: -moz-scrollbars-vertical; 
	overflow-y: scroll;
}

body {
  margin: 0;
	font-family: "Open Sans", Arial, sans-serif;
}

a, a:visited {
	color: #102c5c;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: grey;
}

.header {
	background: #102c5c;
}

.header img {
  margin: 10px;
  margin-left: 20px;
}

div.error-text {
	overflow: hidden;
  max-width: 1040px;
  display: block;
  margin: auto;
  background: white;
  padding: 20px;
  border: 1px #d6dae2 solid;
  border-top: none;
  height: auto;
  max-height: 140px;
  transition: max-height 1.5s ease;
}

div.error-text.open {
	max-height: 700px;
}

.error-text img {
	display: block;
	width: 200px;
	margin: auto;
}

.error-text h1 {
  font-size: 76px;
  display: inline-block;
  margin-right: 40px;
}

.error-text h2 {
  font-size: 21px;
  display: inline-block;
}

.error-text ul {
  list-style: none;
}
.error-text ul li {
  margin: 5px 0;
}