/* GLOBAL STYLES */

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* BASE STYLES */

a {
  text-decoration: none;
  color: #000;
}

/*BODY STYLES */

body {
  margin: 0;
  background-color: #b7dee8;
  font-family: 'Hind', sans-serif;
}

/* NAV STYLES */

#navigation-sticky.dark-nav {
    background-color: #fff;
    box-shadow: 0 0 10px #028090;
}

header, footer {
    background: #D1D7D7; /*#028090;*/
    color: #0095B7;/*#FFF;*/
    background-color: #fff;
    box-shadow: 0 0 10px #028090;
}

/* FORM STYLES */

.form-header {
  margin-bottom: 1em;
  font-family: 'Delius', cursive;
  font-size: 2.3em;
  color: black;
}

form.contact-form {
  margin-top: 2em;
  text-align: center;
}

input,
textarea {
  width: 80%;
  border: solid 2px black;
  padding: .7em;
}

input:focus,
textarea:focus {
  outline-color: #fedcd6;
  border: solid 2px #fedcd6;
}

input,
textarea,
button {
  font-family: 'Hind', sans-serif;
  font-size: 1.3em;
}

textarea {
  height: 150px;
}

.submit-button {
  width: 25%;
  height: 50px;
  background-color: #fedcd6;
  border: solid 2px black;
  -webkit-box-shadow: 5px 5px 0px 1px rgba(0, 0, 0, 1);
  -moz-box-shadow: 5px 5px 0px 1px rgba(0, 0, 0, 1);
  box-shadow: 5px 5px 0px 1px rgba(0, 0, 0, 1);
  transition: all .5s;
  color: black;
}

.submit-button:hover {
  background-color: #fff;
}




/*RESPONSIVE RULES */

@media only screen and (min-width: 768px) {
  
  .form-header {
    font-size: 3em;
  }

input,
textarea,
button {

  font-size: 2em;
}

  .submit-button {
    width: 10%;
  }

  input,
  textarea {
    width: 50%;
  }
  