html {
	margin: 0; 
	padding: 0;
	width: 100%;
	height: 100%;
	position: relative;
  text-transform: uppercase;
}

body { 
	margin: 0; 
	padding: 0;
	background: #ffffff;
	font-family: 'Courier New', monospace;
	color: black;
	width: 100%;
	height: 100%;
	position: relative;
}

#wrapper {
	width: 1200px;
	position: relative;
	margin: 0 auto;
}

#header {
  text-transform: none;
	padding: 80px 0 40px 0;
	text-align: center;	
	background-color: white;
}

#header-title {
	font-size: 100%;
	text-transform: lower;
}

a.link-expander {
	color: black;
	text-decoration: none;
	-webkit-transition: all 30s; /* Safari */
    transition: all 30s;
}

a.link-expander:hover {
	text-decoration: none;
	letter-spacing: 100px;
}

#content {
  width: 100%;
  height: 100%;
  position: relative;
}

.content-element {
	width: 900px;
	height: 700px;
	max-height: 70%;
	margin-bottom: 75px;
	background-position: center center;
    background-repeat: no-repeat;
	background-size: cover;
	cursor: pointer;
	position: relative;
	transition: all 1s;
}


.content-element:hover {
  z-index: 10;
 /* box-shadow: 0px 0px 500px #0000ff; */
  background-position: top left;
}

form {
	width: 60%;
	margin: auto;
}

input {
	width: 100%;
	max-width: 100%;
	margin: 20px 0;
	height: 30px;
	line-height: 20px;
	font-size: 120%;
}

button {
	width: 100%;
	margin: 20px 0;
}

textarea {
	font-size: 80%;
	width: 100%;
	max-width: 100%;
	height: 200px;
	margin: 20px 0;
}