html, body, section {
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: white;
  color: #2C3E50;
  margin: 0;
}

p.indented {
  text-indent: 2em;
}

a {
  color: #E67E22;
}

hr {
  width: 70%;
  margin-top: 4rem;
  margin-bottom: 4rem;
  border: 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

div.title {
  text-align: center;
  margin-bottom: -1.7rem;
}

img.logo {
  margin: 0 auto;
  display: block;
  padding: 0.5rem;
  width: 75px;
}

h1 {
  text-align: center;
  font-size: 400%;
  display: inline;
  position: relative;
  top: -0.5rem;
}

h2 {
  font-size: 200%;
  text-align: center;
}

nav {
  text-align: center;
  background-color: #2C3E50;
  color: white;
  font-weight: bold;
  font-size: 120%;
  width: 70%;
  border-radius: 4px;
  margin: 0 auto;
}
nav div {
  display: inline-block;
  padding: 1rem 3rem;
}
nav div a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease 0s;
}
nav div a:hover {
  color: #E67E22;
}

section {
  margin: 0 auto;
  width: 70%;
}
section h3 {
  font-size: 200%;
  text-align: center;
}

.carousel {
  margin-top: 1rem;
    background-image: url('../img/carousel-dark.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center; 
  
}
.carousel-text {
  color: white;
  text-shadow: 1px 1px black;
  margin: auto;
  text-align: center;
  height: 100%;
  font-size: 150%;
  padding: 6rem 0;
}

footer {
  text-align: center;
  font-size: 80%;
  padding-top: 5rem;
  padding-bottom: 0.5rem;
}

.feature-block {
  clear: both;
  font-size: 150%;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.feature-block .left {
  font-weight: bold;
  text-align: center;
}

.feature-block .right {
  padding-top: 0.5rem;
  text-align: center;
}

.btn {
  padding: 0.7rem 1.2rem;
  border-radius: 6px;
  background-color: #D35400;
  color: white;
  text-shadow: 1px 1px rgba(0,0,0,0.5);
  text-decoration: none;
}
.btn:hover {
  background-color: #E67E22;
}

.text-center {
  text-align: center;
}

.form-button {
  margin-top: 3rem;
}

/* Image Slider */
.slider {

}
.slides {
  position: relative;
  left: 0;
  transition: all 0.5s;
  white-space: nowrap;
  overflow: visible;
}
.slide {
  display: inline-block;
}
.slide-title {
  padding-bottom: 1rem;
  text-align: center;
  font-size: 120%;
  font-weight: bold;
}


.slide-buttons {
  padding-top: 1rem;
  text-align: center;
}
.slide-left, .slide-right {
  width: 20%;
}

img.slide-image {
  width: 80%;
  height: 80%;
  margin: auto;
  display: block;
  border: 1px solid rgba(0,0,0,0.1);
}

/* Form Styling */
form {
  text-align: center;
  padding: 1rem 0;
}
form input, form button, form textarea {
  display: block;
  margin: 1rem auto;
  padding: 0.5rem;
  width: 90%;
  font: inherit;
  font-size: 60%;
}
form input, form textarea {
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 3px;
}
form textarea {
  resize: none;
}