html {
  height: auto;
  width: auto;
  color: #ffffff;
  text-align: center;
  padding-top: 150px;
  background-color: #689252;
}

html{
  background-image: url(/images/Sky-Animation-Background-transp-1500x1000.png), url(/images/ferns-transp.png);
  background-position: center, bottom;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover, contain;
  -webkit-animation-name: colorPulse;
  -webkit-animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: ease-in;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-delay: 2s;
}

@-webkit-keyframes colorPulse {
  0% {background-color: #689252;}
 50% {background-color: #caf466;}
100% {background-color: #a4da86;}
}

body{  
  display: inline-block;
  min-width: 500px;
  max-width: 100%;
}

#hi, #contact{
  width: auto;
  padding: 20px;
  border: solid #fff 4px;
}

.hidden {
  display:none;
}


h1{
  font-size: 10em;
}
h2{
  font-size: 5em;
}

h4 {    
  text-transform: uppercase;
  font-size: 2em;
  border-bottom: 1px solid white;
  padding: 0 0 20px 0;
  margin: 20px 0 40px 0;
}

h1, h2{
  /*display: inline-block;*/
  margin: 0 20px;
}

/* unvisited link */
a:link {
  background-color: #86dd82;
  color: #ffffff;
  text-decoration: none;
  padding: 0 20px;
}
/* visited link */
a:visited {
  background-color: #86dd82;
}
/* mouse over link */
a:hover {
  background-color: #64755b;
}
/* selected link */
a:active {
  background-color: #000;
}


/*button{
  background-color: #ffffff;
  color: #64755b;
  padding: 10px 20px;
  margin: 10px;
  border: none;
  font-size: 1.2em;
  text-transform: uppercase;
}*/

/*button{
  background-color: #ffffff;
  color: #64755b;
  padding: 10px 20px;
  margin: 10px 0;
  border: none;
  font-size: 1.2em;
  text-transform: uppercase;
  width: 50%;
  box-sizing: border-box;}*/

button{
  background: none;
  color: #fff;
  padding: 10px 20px;
  margin: 10px 0;
  border: 3px solid #fff;
  font-size: 1.2em;
  text-transform: uppercase;
  width: 50%;
  box-sizing: border-box;
}

button:hover{
  background-color: #64755b;
  color: #ffffff;
  cursor: pointer;
}

*:focus{
  outline-color: #64755b;
  outline-style: dashed;
}

input, textarea{
  display:block;
  padding: 0;
  margin: 4px 0;
  padding: 10px;
  box-sizing: border-box;  
  width:100%;
  border: none;
  background: rgba(0,0,0,.5);
  color: #64755b;
  font-size: 16px;
}

.project {
  background: #000;
  width: 400px;
  height: 500px;
}

.project.unfocus{
  -webkit-filter: blur(5px); /* Safari 6.0 - 9.0 */
  filter: blur(5px);
}

textarea{
  min-height:150px;
  resize: none;
}

input[type="submit"]:hover{
  cursor: pointer;
  background-color: #fff;
  color: #64755b;
}
input[type="submit"] {
  background-color: #64755b;
  border: none;
  color: #fff;
}

hr{
  margin: 20px 0;
}