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

html, body {
  height: 100%;
  font-family: sans-serif;
}

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 16px;
}

#app {
  background-color: darkslategray;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.wrapper {
  margin: 0 auto;
  background-color: white;
}

nav {
  height: 50px;
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
nav a {
  color: white;
  text-decoration: none;
}

.heroContainer {
  background-color: #BEBEBC;
  height: 600px;
  position: relative;
  z-index: 1;
}
.heroContainer h1 {
  position: absolute;
  right: 50%;
  top: 30%;
  font-size: 60px;
  color: white;
}
.heroContainer h2 {
  position: absolute;
  right: 40%;
  top: 45%;
  font-size: 45px;
  color: #FCC218;
}

.heroOverlay {
  position: absolute;
  height: 600px;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.bioImg {
  height: 550px;
  position: absolute;
  bottom: 0;
  right: 10%;
}

.aboutMeContainer {
  margin: 50px auto;
  text-align: center;
}

.aboutMeMain {
  margin: 0 auto;
  text-align: center;
  width: 50%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 2% 5%;
  color: black;
}

.aboutMeLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.aboutMeLinks a {
  color: black;
  margin-top: 25px;
}

.projectGalleryContainer {
  padding: 2% 5%;
  background-color: #4C4C4B;
  text-align: center;
}
.projectGalleryContainer h1 {
  color: #FCC218;
  margin-bottom: 50px;
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.projectGalleryItem {
  background-color: #36454f;
  -webkit-box-shadow: 5px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px rgba(0, 0, 0, 0.3);
  margin-bottom: 50px;
  margin-right: 20px;
  width: 300px;
}

.galleryItemImg {
  width: 100%;
  height: auto;
}
.galleryItemImg img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.galleryItemTxt {
  padding: 1% 2%;
  color: whitesmoke;
}
.galleryItemTxt a {
  color: whitesmoke;
}

.contactFormContainer {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #F3F3F3;
}

.contactBoxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 40%;
  margin: 30px auto;
}

.contactBox {
  background-color: white;
  padding: 20px;
  width: 28%;
  border-radius: 5px;
}
.contactBox h4 {
  margin-bottom: 10px;
}

.contactForm {
  width: 40%;
  margin: 0 auto;
  background-color: white;
  padding: 20px;
  border-radius: 5px;
}
.contactForm textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #F1F1F1;
  border-radius: 5px;
}
.contactForm button {
  background-color: #FCC218;
  height: 40px;
  width: 125px;
  border: none;
  border-radius: 25px;
  margin-top: 20px;
}

.contactRow1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contactRow1 input {
  width: 45%;
  height: 25px;
  margin-bottom: 25px;
  border: 1px solid #F1F1F1;
  padding: 5px;
  border-radius: 5px;
}