body {
  background-color: black;
}
* {
  color: aliceblue;
  margin: 0;
  box-sizing: border-box;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;

  height: 69px;
  border-bottom: 1px solid seashell;
  position: sticky;
  top: 0px;
  background-color: black;
}
nav img {
  height: 50px;
  margin-left: 10px;
}
nav ul {
  display: flex;
  width: 15%;
  justify-content: space-around;
}
nav li {
  list-style: none;
  text-decoration: underline;
}
.jumbotron {
  width: 1200px;
  height: 700px;
  background-image: url("./Pic/img-mission-background.jpg");
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.headline {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.719);
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 35px;
}
.Tea-section {
  width: 1000px;
  margin: 25px auto;
  text-align: center;
}
.Tea-Type-section {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}
.Tea-Type-info {
  margin-top: 20px;
}
.Tea-Type-info img {
  width: 300px;
  height: 200px;
}
.Tea-Type-info h4 {
  margin-top: 10px;
}
.Location {
  background-image: url("./Pic/img-locations-background.jpg");
  height: 500px;
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 60px;
}
.Location-section {
  display: flex;
  justify-content: space-around;
}
.Location-info {
  background-color: hsla(0, 0%, 0%, 0.8);
  width: 300px;
  height: 300px;
  line-height: 35px;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
footer {
  height: 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
footer h6 {
  text-align: left;
  font-size: 0.83em;
  margin-left: 20px;
}
