:root {
  --main-color: #d9bd6a;
}

body {
  font-family: "DM Sans", sans-serif;
  height: 100vh;
  margin: 0;
}

.content-wrap {
  min-height: calc(100vh - 400px - 50px);
  padding: 20px 100px 20px 100px;
  box-sizing: border-box;
  font-size: 1.2em;
}

header {
  background-image: url("/resources/images/header.webp");
  background-size: cover;
  background-position: center;
  background-color: rgba(255, 255, 255, 0);
  background-blend-mode: lighten;
  height: 400px;
  overflow: hidden;
  color: white;
  text-shadow: 0px 0px 10px black, 0px 0px 20px black;
  box-shadow: 0px -3px 3px -3px black inset;
}
header h1 {
  text-align: center;
  font-size: 5em;
}
header h2 {
  text-align: center;
}

footer {
  height: 50px;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.projects {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projects > :last-child {
  border-bottom: 2px solid var(--main-color);
}

.project {
  display: flex;
  flex-direction: row;
  padding: 15px 0px 15px 0px;
  border-top: 2px solid var(--main-color);
}
.project h2 {
  font-size: 2em;
  margin: 0;
  padding: 5px 0px 5px 15px;
  font-weight: 500;
}
.project img {
  width: 400px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.project:hover {
  cursor: pointer;
  box-shadow: 0px 2px 16px black !important;
}

.project-body {
  display: flex;
  flex-direction: column;
}

.project-description {
  background-color: white;
  padding: 10px;
  height: 100%;
}

.form {
  margin-top: 50px;
  padding: 0px 50px 50px 50px;
  background-color: var(--main-color);
  overflow: auto;
  box-shadow: 0px 2px 6px black;
}
.form h3 {
  text-align: center;
}
.form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.form form input[type=text] {
  width: 200px;
}
.form form input[type=email] {
  width: 200px;
}
.form form textarea {
  width: 100%;
  height: 200px;
  resize: none;
}/*# sourceMappingURL=style.css.map */