* {
  margin: 0px;
  padding: 0px;
}

.view {
  background-image: url('../images/view.jpg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size:cover;
  background-position: center center;
}

#wrapper {
  width: 960px;
  margin: 15px auto;
  text-align: left;
}

#front_header {
  width: 100%;
  height: 100px;
  display: flex;
  margin: 0px auto;
  text-align: left;
}

#main_header {
  background: #002100;
  background: linear-gradient(to left, #006600, #000000);
  width: 100%;
  height: 100px;
  display: flex;
  margin: 0px auto;
  text-align: left;
}

#logo {
  position:relative;
  display:-ms-flexbox;
  display:flex;
  align-items:center;
  -ms-flex-align:center;
  margin-right:auto;
  max-height:100%;
}

#logo img {
  display:block;
  max-width:100%;
  max-height:100%;
  height:100px;
}

#main_menu li {
  display: inline-block;
  list-style: none;
  padding: 5px;
  padding-top: 39px;
  padding-right: 25px;
  font: bold 14px verdana, sans-serif;
}

#main_menu a {
  text-decoration: none;
  color: #eeeeee;
}

#main_menu a:hover {
  color: #1ABC9C;
}

#main_section {
  width: 920px;
  margin: 20px;
  font-size: 20px;
}

#front_section {
  width: 555px;
  color: white;
}

#front_section h1 {
  font-size: 70px;
  padding-top: 350px;
}

#front_section p {
  font-size: 20px;
  padding-top: 50px;
}

#main_section ul {
  margin-left: 40px;
  margin-right: 40px;
}

#main_section h1 {
  text-align:center;
  padding-top: 18px;
  padding-bottom: 18px;
}

#main_section h2 {
  padding-bottom: 18px;
}

#main_section h3 {
  padding-bottom: 18px;
}

p {
  padding-bottom: 18px;
}

.learnmore {
  width: 100px;
  cursor:pointer;
  border-radius: 50px;
  padding: 10px;
  color: White;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(to bottom, #ffccb3, #993300);
  display:block;
  margin:0 auto;
  display: inline-block;

  /* Animations: */
  -webkit-transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  -webkit-transition-property: all;

  -moz-transition-timing-function: ease-in-out;
  -moz-transition-duration: .4s;
  -moz-transition-property: all;
}

.learnmore:hover {
  background: linear-gradient(to bottom, #ff9966, #662200);
}

.centered {
  text-align: center;
  padding: 10px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + #wrapper {
  padding-top: 102px;
}

.centerdiv2 {
  text-align: center;
  margin-bottom: 60px;
}

.greenbutton:link, .greenbutton:visited {
  background-color: #4caf50;
  color: white;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.greenbutton:hover, .greenbutton:active {
  background-color: #3e8e41;
}

dl {
  margin-bottom: 30px;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 30px;
}

.centerimage {
  width: 60%;
  margin: auto;
  margin-bottom: 20px;
  display: block;
}

#bottom {
  width: 100%;
  bottom: 0;
  left: 0;
  padding-left: 30px;
  padding-top: 15px;
  background: #cccccc;
  font-size: 14px;
}

/* Add a background color and some padding around the form */
.contactform {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}
/* Style inputs with type="text", select elements and textareas */
.contactform input[type=text], input[type=number], input[type=url], input[type=tel], input[type=email], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
.contactform input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#centerbutton {
  text-align: center;
}

/* When moving the mouse over the submit button, add a darker green color */
.contactform input[type=submit]:hover {
  background-color: #45a049;
}
