@import url("https://fonts.googleapis.com/css2?family=Oswald&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
}

body {
  font: 100% "Open Sans", Helvetica, sans-serif;
  font-weight: 400;
  color: black;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-image: url("/images/slideshow1.avif");
}

h1 {
  font: 100% Oswald, Impact, sans-serif;
  color: black;
  font-size: 2em;
  text-align: center;
}

ul {
  list-style-image: url("../images/hex2.svg");
}

a {
  text-decoration: none;
}

body header a {
  max-height: 5em;
}

header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  background-color: white;
  align-items: center;
  padding: 0em 1em;
  z-index: 2;
  position: absolute;
  top: 0;
  width: 100%;
}

header img {
  height: 5em;
}

#contactMain {
  position: absolute;
  top: 5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  z-index: 0;
}

span#trademark {
  font-size: 2rem;
  display: inline-block;
  position: relative;
  top: -1rem;
}

#tagline {
  text-align: center;
  font-style: italic;
}

@media screen and (max-width: 400px) {
  span#trademark {
    font-size: 0.75em;
    display: inline-block;
    position: relative;
    top: -1rem;
  }
}
main {
  padding-bottom: 2em;
}

header nav a {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

header a img {
  max-width: 10em;
}

#ContactUsHeading {
  background-image: url(/images/pexels-timmossholder-9743);
  background-repeat: no-repeat;
  background-position: bottom;
  align-content: center;
  background-size: cover;
  color: #e9b033;
  text-shadow: 1px 1px 3px #333, -1px 1px 3px #333, -1px -1px 3px #333, 1px -1px 3px #333;
}

form {
  width: 50%;
  margin: auto;
  display: flex;
  flex-direction: column;
}
form label {
  color: black;
  -webkit-text-stroke: 1px white;
  font-weight: 1000;
  font-size: 1.25rem;
}

input,
textarea {
  width: 100%;
  border-radius: 5px;
  border: none;
  box-shadow: inset 2px 2px 2px #999;
  margin-bottom: 2em;
}

input {
  height: 2em;
}

textarea {
  height: 20em;
}

textarea#message {
  height: calc(100vh - 30rem);
  padding: 0.25em;
}

#submitBtn {
  background-color: #f4b206;
  color: black;
  border: none;
  padding: 1em;
  padding-bottom: 2em;
  border-radius: 1em 0 1em 0;
  box-shadow: 2px 2px 4px #999;
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  form {
    min-width: 90vw;
  }
}

/*# sourceMappingURL=contact.css.map */
