body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  background: #ecf0f1;
}

input, textarea {
  border-radius: 5px;
  border: 1px solid grey;
  padding: 5px 10px;
  font-size: 16px;
  font-family: "Lato", sans-serif;
}

button {
  background: #2980b9;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  color: white;
  font-size: 16px;
}

.mainSplash {
  width: 100vw;
  height: 50vh;
  background: url("/media/splash.jpg"), #815a4b;
  background-size: cover;
  background-position: center;
  padding: 150px 100px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .mainSplash {
    height: 35vh;
    justify-content: center;
    padding: 10px;
  }
}
.mainSplash .textContainer {
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.mainSplash .textContainer h1 {
  font-size: 64px;
}
@media (max-width: 768px) {
  .mainSplash .textContainer h1 {
    text-align: center;
    font-size: 48px;
  }
}

.navContainer {
  display: flex;
  flex-direction: row;
  width: 100vw;
  height: 60px;
  padding: 0px 50px;
  box-sizing: border-box;
  background: #34495e;
  color: white;
  transition: 0.2s;
}
.navContainer a {
  color: white;
  text-decoration: none;
}
.navContainer .navItem {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
}
.navContainer .navItem:hover {
  background: #2c3e50;
  cursor: pointer;
}
.navContainer .navItem.active {
  background: #2c3e50;
}

.contentContainer {
  width: 100vw;
  max-width: 1600px;
  margin: auto;
  padding: 50px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .contentContainer {
    padding: 25px;
  }
}
.contentContainer .sectionContainer:not(:last-child) {
  padding-bottom: 50px;
}

.projectItem {
  padding-bottom: 25px;
  margin: 25px 0px;
}
.projectItem:not(:last-child) {
  border-bottom: 1px solid grey;
}
.projectItem .projectDate {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}
.projectItem h2 {
  margin-top: 5px;
}
.projectItem .projectContent {
  margin-left: 10px;
}

.contactContent {
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  .contactContent {
    flex-direction: column;
  }
}
.contactContent .leftSide {
  flex: 1;
}
.contactContent .rightSide {
  flex: 2;
}

.messageReceived {
  background: #43A047;
  color: white;
  padding: 5px 10px;
  margin-bottom: 10px;
  border-radius: 3px;
}

.contactForm {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .contactForm {
    margin-top: 20px;
  }
}
.contactForm .formRow {
  display: flex;
  flex: 1;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .contactForm .formRow {
    flex-direction: column;
    gap: 5px;
  }
}
.contactForm .formRow input {
  flex: 1;
}
.contactForm .formRow textarea {
  flex: 1;
  min-height: 250px;
}
.contactForm .formRow .formSubmit {
  margin-left: auto;
  padding: 10px 20px;
}
.contactForm .formRow .formSubmit:hover {
  cursor: pointer;
  filter: brightness(0.95);
}/*# sourceMappingURL=style.css.map */