* {
  margin: 0;
  padding: 0;
}

h1 {
  font-family: "Staatliches", cursive;
  font-size: 9.5vw;
  color: slategrey;
  background: darksalmon;
  text-align: center;
}

h2 {
  font-family: "Staatliches", cursive;
  color: darkslategrey;
  background: darksalmon;
}

h3 {
  font-family: "Staatliches", cursive;
  color: blanchedalmond;
  text-shadow: 2px 2px darksalmon;
  font-size: 5.2vw;
}

p {
  font-family: "IBM Plex Mono", monospace;
  text-decoration: none;
  color: black;
}

a {
  font-family: "IBM Plex Mono", monospace;
  text-decoration: none;
  color: whitesmoke;
}

a:hover {
  text-decoration: underline;
}

body {
  background: cadetblue;
}

header {
  height: 90vh;
  background-image: url(assets/headerBG.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
header div {
  position: sticky;
  top: 25vh;
  left: 5vw;
  display: inline-block;
}
header div h1 {
  display: block;
  margin-bottom: 10px;
}
header div h2 {
  display: inline;
}

nav {
  position: sticky;
  top: 0px;
  z-index: 10;
}
nav ul {
  display: grid;
  /*overflow: hidden;*/
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
  list-style-type: none;
}
nav ul li a {
  display: block;
  color: black;
  background-color: darksalmon;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  border-bottom: 1px solid blanchedalmond;
  border-top: 1px solid blanchedalmond;
  padding-top: 3px;
  padding-bottom: 3px;
}
nav ul li a:hover {
  background-color: cadetblue;
  text-decoration: none;
}

main {
  background: cadetblue;
  display: grid;
  gap: 2vw;
}
main section {
  padding: 2vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
main section .sectionContent h3 {
  padding-bottom: 10px;
}
main section .sectionContent p {
  padding-bottom: 25px;
}
main section .sectionContent input[type=text], main section .sectionContent input[type=email], main section .sectionContent textarea, main section .sectionContent button {
  font-family: "IBM Plex Mono", monospace;
  width: 80vw;
  padding: 5px 5px 5px 10px;
  display: block;
  line-height: 25px;
  border-radius: 3px;
  border: 1px solid darksalmon;
  margin: auto 0;
}
main section .sectionContent textarea {
  resize: none;
}
main section .sectionContent button {
  text-align: left;
}
main section .sectionContent button:hover {
  text-align: left;
  background: darksalmon;
  box-shadow: inset 0 0 5px #111111;
  cursor: pointer;
}
main section .sectionImage {
  margin: 0 auto;
  padding-top: 2vh;
}
main section .sectionImage img {
  width: 100%;
  max-width: 200px;
  height: auto;
  font-size: 0;
  display: block;
  border: 10px solid white;
  border-bottom: 50px solid white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  transform: rotate(3deg);
  z-index: 5;
}

footer {
  background: slateblue;
}

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