body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.bodyContainer {
  height: 103vh;
}

header {
  background-color: #222b23;
  color: white;
  display: flex;
  flex-direction: column;
  /* text-align: center; */
  align-items: center;
  /* height: 200px; */
  box-shadow: 0rem 0.2rem 0.2rem 0 rgba(0, 0, 0);
}

header h1 {
  margin-bottom: 10px;
}

header Img {
  max-width: 80%;
  /* margin: auto; */
  /* position: relative; */
}

#navMenu {
  position: absolute;
  top: 15px;
  left: 15px;
}

.dropbtn {
  background-color: #3c4f40;
  border-radius: 10px;
  border-style: none;
  padding: 1px 10px 1px 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.6);
  color: #222b23;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  /* min-width: 160px; */
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  padding: 1px 10px 1px 10px;
  border-radius: 3px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  color: #a0b5a4;
  font-weight: bolder;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #e7f7e8;
}

/* ////////////////////// SEARCH PAGE ////////////////////////////////// */
#searchIntro {
  padding-top: 2rem;
  text-align: center;
  max-width: 60%;
  margin: auto;
  margin-bottom: 1rem;
}

#searchIntro h2 {
  font-weight: bold;
  padding-bottom: 1rem;
  font-size: 18pt;
  color: #435646;
}

#searchContainer {
  padding: 1rem;
  display: flex;
  justify-content: center;
}

.search-cards {
  background-color: #222b23;
  padding: 10px;
  margin: 0px 15px 20px 15px;
  height: 5em;
  color: white;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0rem 0.2rem 0.2rem 0 rgba(0, 0, 0);
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px outset rgba(111, 119, 113, 0.938);
}

select {
  width: 250px;
  margin-top: 30px;
  border-radius: 3px;
  color: #3c4f40;
  padding-left: 5px;
  box-shadow: 0rem 0.2rem 0.2rem 0 rgba(0, 0, 0);
}
select:hover {
  /* background-color: #e7f7e8; */
  transform: translateY(-0.2rem);
  transition: transform 150ms;
}
#searchSubmission {
  padding: 0.5em;
  margin: auto 1em;
  text-align: center;
}

#submitButton {
  background-color: #3c4f40;
  border-radius: 20px;
  border: 2px outset rgba(107, 114, 109, 0.938);
  /* border: 2px double rgba(51, 66, 54, 0.75); */
  color: white;
  font-size: 12pt;
  padding: 3px 30px 3px 30px;
  box-shadow: 0rem 0.2rem 0.2rem 0 rgba(0, 0, 0);
  text-transform: uppercase;
}

#submitButton:hover {
  cursor: pointer;
  transform: translateY(-0.2rem);
  transition: transform 150ms;
  box-shadow: 0 0.4rem 1.4rem 0 rgba(0, 0, 0);
}

/* ////////////////////////// END OF SEARCH PAGE ///////////////////////////////// */

footer {
  background-color: #435646;
  height: 1.5rem;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

@media only screen and (max-width: 600px) {
  .bodyContainer {
    height: 110vh;
  }
  #searchContainer {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .search-cards {
    width: 300px;
    margin: 15px;
    padding: 10px;
  }
}
