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

#container {
  width: 1000px;
  background-color: #f2f2ea;
  border: 2px solid black;
  margin: 10px auto;
  -webkit-box-shadow: 15px 15px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 15px 15px 10px rgba(0, 0, 0, 0.5);
}

/*Header*/
header {
  background-color: #06b2da;
  padding: 5px;
}

header h1 {
  font-size: 40px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header img {
  margin: 10px 40px;
  border: 1px solid black;
}

/*Nav*/
nav {
  background-color: #048abf;
  color: black;
  text-align: center;
  padding-top: 1px;
  padding-top: 10px;
}

nav li {
  display: inline;
  margin-right: 1.2em;
  font-size: 20px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

/*Both Left and Right*/
#container {
  /*left Section*/
}

#container div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#container div > * {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

#container section div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: .5rem;
  width: 450px;
  margin: 20px;
}

#container section div p img {
  border: 1px solid black;
}

p img {
  border: 1px solid black;
  margin-left: 20px;
  width: 400px;
}

.imageGallery img {
  border: 1px solid black;
  width: 120px;
  height: 120px;
}

/*Right Section*/
div main {
  width: 450px;
  margin-top: 20px;
}

div main h3 {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 15px;
  padding-bottom: 10px;
  text-align: center;
}

div main p {
  text-decoration: none;
  font-size: 14px;
}

div main div section {
  -webkit-column-count: 2;
          column-count: 2;
  margin-bottom: 30px;
}

/*Form on right side*/
form {
  border: 2px solid black;
  background-color: #f29e07;
  width: 465px;
  height: 250px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 13px;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

form h2 {
  margin: 10px;
}

form p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 20px;
  margin-bottom: 10px;
}

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

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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 38rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #06b2da;
  padding: 10px;
}

footer div > * {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  background-color: #f54403;
}

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

footer img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin: 10px;
}
/*# sourceMappingURL=style.css.map */