*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.hidden{
  display: none;
  visibility: hidden;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  padding: 0;
  margin: 0;
  background-color: #a39797;
}

/* Global Stuff*/ 
.container{
  width: 80%;
  margin: auto;
  overflow: hidden;
}

/* section{
  height: 100vh;
  width: 100%;
} */

ul{
    margin: 0;
    padding: 0;
}

/* Header */
header{
  background: #35424a;
  color: #e8491d;
  padding-top: 20px;
  min-height: 70px;
  border-bottom: #e8491d 3px solid;
}

header a{
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}

header li{
  float: left;
  display: inline;
  padding: 0 20px 0 20px;
}

header #branding{
  float: left;
}

header #branding h1{
  margin: 0;
}

header nav{
  float: right;
  margin-top: 13px;
}

/* header .highlight, header .current a{
  color: #e8491d;
  font-weight: bold;
} */

header a:hover{
  color: #cccccc;
  font-weight: bold;
}

/* Showcase */
#showcase{
  min-height: 300px;
  /* background: url('../img/mr-and-mrs-sign.jpg') no-repeat -400px; */
  background-color: #557a95;
  text-align: center;
  color: #edf5e1;
  border-bottom: #e8491d 3px solid;
  /* opacity: 0.8; */
}

#showcase h1{
  margin-top: 80px;
  margin-bottom: 10px;
  font-size: 45px;
}

#showcase p{
  font-size: 20px;
}

/* Boxes*/
#boxes{
  margin-top: 10px;
}

#boxes .box{
  float: left;
  text-align: center;
  font-size: 25px;
  color: #ffffff;
  width: 30%;
  padding: 5px;
  /* border-bottom: #e8491d 3px solid; */
}

.box-text{
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}

img {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  width: 80%;
  height: 200px;
}

.form-box{
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0px 0px 20px #788186;
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-group{
  width: 100%;
  margin-top: 20px;
  font-size: 15px;
}

.form-group input,
.form-group text-area{
  width: 100%;
  padding: 5px;
  font-size: 10;
  border: 1px solid #788186;
  margin-top: 10px;
}

textarea{
  resize: vertical;
}

button[type="submit"]{
  width: 100%;
  border: none;
  outline: none;
  padding: 20px;
  font-size: 20px;
  border-radius: 8px;
  color: #09496b;
  background-color: #e8491d;
}

/* #boxes .box img{
  width: 90px;
} */

footer{
  padding: 20px;
  margin-top: 20px;
  color: #ffffff;
  background-color: #e8491d;
  text-align: center;
  font-size: 17px;
}

/* Media Queries */
@media(max-width: 768px){
  header #branding,
  header nav,
  header nav li,
  #boxes .box{
    float: none;
    text-align: center;
    width: 100%;
  }

  header{
    padding-bottom: 20px;
  }

  #showcase{
    padding-bottom: 20px;
  }

  #showcase h1{
    margin-top: 20px;
  }
}
