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

body {
  color: black;
}

#container {
  max-width: 1000px;
  /**/
  margin: 0 auto;
  /*Put container in the middle*/
  border: 1px solid black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*Nav*/
header {
  background-color: #06b2da;
}

header h1 {
  margin: 30px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 40px;
}

header h1 img {
  /*header picture*/
  width: 300;
  border: 1px solid black;
  margin-right: 10px;
}

/*Nav*/
nav {
  background-color: #048abf;
  padding: 5px;
  font-size: large;
  font-weight: bold;
  text-transform: uppercase;
}

nav ul {
  /*flex the li in to a row*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

li {
  /*li centered and spaced*/
  display: inline;
  margin-right: 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

ul {
  list-style-type: none;
  /*No more bullets in nav*/
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

/*Left*/
#container div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*Flex the main and sections in to rows/side by side*/
}

#container div section div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*flex row*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /*wrap pics*/
  gap: .5rem;
  /*Gap in between pics*/
}

p img {
  /*big image*/
  border: 1px solid black;
  width: 400px;
  margin: 30px 20px 0 30px;
}

.imageGallery {
  /*small images*/
  margin-left: 30px;
  margin-bottom: 20px;
}

.imageGallery img {
  /*small images*/
  border: 1px solid black;
  width: 120px;
  height: 120px;
}

/*Right*/
h3 {
  margin: 30px 30px 0 20px;
  text-align: center;
  font-size: 16px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

#container div main div section {
  -webkit-column-count: 2;
          column-count: 2;
  margin: 10px 30px 0 20px;
  font-size: 16px;
}

form {
  border: 2px solid black;
  background-color: #f29e07;
  width: 500px;
  height: 250px;
  margin: 30px 30px 0 20px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*Flex to row*/
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /*now a column*/
}

form h2 {
  margin: 10px;
}

form p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*Flex row - labels and inputs*/
  margin-left: 20px;
  margin-bottom: 10px;
}

form label {
  text-align: right;
  width: 60px;
  margin-right: 15px;
}

form #floatName, form #floatEmail {
  width: 320px;
}

form #floatMessage {
  width: 320px;
  height: 100px;
}

form input[type=submit] {
  background-color: #0788c5;
  color: white;
  padding: 2px 10px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 16px;
  margin-right: 20px;
  margin-left: 60px;
}

form input[type=reset] {
  background-color: #f54403;
  color: white;
  padding: 2px 10px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 16px;
}

/*Footer*/
footer {
  background-color: #048abf;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer h1 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  margin-left: 20px;
}

footer img {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  margin-right: 20px;
}

/*Media Query*/
@media only screen and (max-width: 450px) {
  #container {
    width: 100%;
  }
  header h1 img {
    /*header picture*/
    width: 100%;
    border: 1px solid black;
    margin-right: 10px;
  }
  header h1 {
    text-align: center;
  }
  li {
    /*li centered and spaced*/
    display: inline;
    margin-right: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #container div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*Flex the main and sections in to rows/side by side*/
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #container div section div {
    display: block;
    /*flex row*/
    -ms-flex-wrap: none;
        flex-wrap: none;
    /*wrap pics*/
  }
  p img {
    /*big image*/
    width: 100%;
    margin: 0 0 0 0;
  }
  #container div main div section {
    -webkit-column-count: 1;
            column-count: 1;
  }
  form {
    width: 100%;
    height: 250px;
    margin: 10px 0 20px 0;
  }
  form label {
    text-align: right;
    width: 60px;
    margin-right: 15px;
  }
  form #floatName, form #floatEmail {
    width: 80%;
    margin-right: 10px;
  }
  form #floatMessage {
    width: 80%;
    height: 100px;
    margin-right: 10px;
  }
  footer {
    height: 100px;
  }
}
/*# sourceMappingURL=style.css.map */