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

body {
  background-color: #818181;
}

header {
  grid-area: header;
}

nav {
  grid-area: nav;
}

#main {
  grid-area: main;
}

#leftColumn {
  grid-area: left;
}

#rightColumn {
  grid-area: right;
}

footer {
  grid-area: footer;
}

#container {
  display: grid;
  grid-template-areas: 'header' 'nav' 'main' 'footer';
}

#main {
  display: grid;
  grid-template-areas: 'left right';
}

#container {
  width: 900px;
  background-color: #f2f2ea;
  font-family: Arial, Helvetica, sans-serif;
  margin-left: auto;
  margin-right: auto;
}

header {
  font-weight: bolder;
  font-size: larger;
  height: 140px;
  background-color: #06b2da;
  color: black;
  padding: 0px;
  margin: 0px;
  display: grid;
  grid-template-areas: 'leftHeader rightHeader rightHeader';
}

header img {
  height: 100px;
  width: 300px;
  border: 2px solid black;
  margin: 20px 20px 10px 35px;
  grid-area: leftHeader;
}

header h1 {
  padding-top: 65px;
  margin-right: 300px;
  grid-area: rightHeader;
}

nav {
  clear: both;
  background-color: #048abf;
  color: black;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  padding: 12px 0px 2px 0px;
}

nav li {
  display: inline;
  list-style-type: none;
  margin-right: 2em;
}

#leftColumn {
  background-color: white;
  width: 425px;
  height: 555px;
  padding: 30px;
}

#leftColumn p img {
  border: 2px solid black;
  width: 358px;
}

.imageGallery img {
  border: 2px solid black;
  height: 92px;
  width: 113px;
  margin-top: 8px;
  margin-right: 2px;
}

#rightColumn {
  background-color: white;
  width: 475px;
  height: 555px;
  padding: 0px 30px;
}

#rightColumn h3 {
  text-align: center;
  font-size: 12px;
  margin: 30px 10px 10px 10px;
  font-weight: bold;
}

#rightColumn #textColumn {
  column-count: 2;
  column-gap: 12px;
  margin-bottom: 18px;
}

#rightColumn #textColumn p {
  font-size: 11.5px;
  line-height: 1.4em;
}

form {
  display: grid;
  grid-template-columns: 10% 45% 45%;
  align-content: end;
  font-size: 12px;
  font-weight: bold;
  border: solid 3px;
  background-color: orange;
}

form h2 {
  grid-column: 1/4;
  font-size: 14px;
  font-weight: bolder;
  margin: 10px 0px 10px 12px;
}

input[type=text] {
  margin-left: 5px;
  width: 94%;
}

textarea {
  margin-left: 5px;
  width: 94%;
  height: 90px;
}

form p:nth-of-type(3) label {
  margin-top: 16px;
}

form p:last-of-type {
  display: grid;
  margin-left: 100px;
}

#button {
  width: 60px;
  background-color: #048abf;
  color: white;
  font-size: 11px;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 2px 8px;
  margin-right: 18px;
}

#button2 {
  width: 60px;
  background-color: red;
  color: white;
  font-size: 11px;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 2px 10px;
}

form p {
  grid-column: 2/4;
  display: grid;
  grid-template-columns: auto 80%;
  margin-bottom: 8px;
  justify-content: end;
}

footer {
  color: black;
  background-color: #048abf;
  display: grid;
  grid-template-areas: 'leftFooter rightFooter';
}

footer h1 {
  font-size: 30px;
  margin: 22px 200px 16px 40px;
  grid-area: leftFooter;
}

footer img {
  height: 35px;
  margin-left: 25px;
}

footer .roundedImage {
  border-radius: 25%;
}

footer #footerImages {
  direction: rtl;
  grid-area: rightFooter;
  margin: 17px 25px 17px 320px;
}
