/*--------------------------------------------------*/
/* HEADER */
/*--------------------------------------------------*/
#announcement {
  text-align: center;
  background-color: #e1ccbe;
  color: #757263;
  padding: 1%;
  border: 1px solid #757263;
  font-family: 'brandon-grotesque', sans-serif;
}
#logoPanel ul {
  list-style-type: none;
  display: flex;
  justify-content: space-around;
  margin: 0;
  padding-left: 0;
  padding-top: 1%;
  background-color: #757263;
}
nav ul {
  list-style-type: none;
  background-color: #e1ccbe;
  padding: 1%;
  margin: 0;
  text-align: center;
  font-size: 1.5em;
  border: 1px solid #757263;
  font-family: 'brandon-grotesque', sans-serif;
}
nav li {
  border-bottom: 1px solid #757263;
}
nav a {
  text-decoration: none;
  color: #757263;
}
.selected {
  color: black;
}
/*--------------------------------------------------*/
/* FOOTER */
/*--------------------------------------------------*/
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #757263;
  padding: 3% 0 3% 0;
}
#bottomInfo {
  display: flex;
  flex-wrap: wrap;
  width: 200px;
  text-align: center;
  align-content: center;
  justify-content: center;
  color: whitesmoke;
  border-bottom: 1px solid antiquewhite;
  font-family: 'brandon-grotesque', sans-serif;
}
#signUp {
  display: flex;
  flex-wrap: wrap;
  width: 200px;
  text-align: center;
  justify-content: center;
  color: whitesmoke;
  border-bottom: 1px solid antiquewhite;
  font-family: 'granville', sans-serif;
  padding-bottom: 1em;
}
#signUpForm {
  align-items: center;
}
#bottomLinks {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: antiquewhite;
  padding-top: 1em;
  font-family: 'brandon-grotesque', sans-serif;
}
#bottomLinks ul {
  list-style-type: none;
  margin: 0;
  padding: 0 0 10% 0;
}
#bottomLinks li {
  padding: 3% 0 3% 0;
}
#bottomLinks a {
  text-decoration: underline;
  color: antiquewhite;
}
#bottomSocial {
  filter: invert(100%);
  justify-content: center;
}
#bottomSocial a {
  padding: 0 0.5em;
}
/*--------------------------------------------------*/
/* QUERIES */
/*--------------------------------------------------*/
@media (min-width: 700px) {
  nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 1.2em;
  }
  nav li {
    border-bottom: 0;
    padding-left: 2%;
    padding-right: 2%;
  }
  footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
  }
  #bottomInfo {
    border-bottom: 0;
  }
  #signUp {
    border-bottom: 0;
  }
  #bottomLinks {
    padding-top: 0;
  }
  #infoPanel {
    display: flex;
  }
  #logoPanel {
    display: flex;
    align-items: stretch;
  }
  #logoPanel ul {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
    padding-right: 4%;
    border: 0;
    background-color: white;
    filter: none;
  }
  @media (min-width: 950px) {
  }
  @media (min-width: 1400px) {
    #wrapper {
      margin: auto;
      width: 80%;
      max-width: 1600px;
    }
  }
}