* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background-color: black;
  font-family: Helvetica;
  color: seashell;
}

header {
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  height: 65px;
  width: 100%;
  border-bottom: 1px solid seashell;
  background-color:black;
}

li {
  font-size: 1.5rem;
}

.logo-img {
  height: 50px;
  margin-top: 6px;
}
nav ul {
  list-style: none;
  display: flex;
}

nav li {
  margin: auto 0px;
  margin-left:30px;
}

nav a {
  color: #337ab7;
}

h1,
h2,
h3,
h4,
p,
a:link,
a:visited,
a:hover,
a:active{
  color: seashell;
}

/* MISSION */

.mission {
  margin: 0 auto;
  height: 700px;
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/img-mission-background.jpg);
  background-repeat: no-repeat;
  background-position: center;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.mission-statement {
  text-align: center;
  background-color: black;
  width: 1200px;
}

/* Tea of the month */

#tea-of-the-month{
  padding-bottom: 30px;
}

.tea {
  text-align: center;
}

.row {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

.row img {
  height: 200px;
  width: 300px;
  border-radius: 5px;
}

.img-cell{
  margin: 0 20px;
}

/* LOCATIONS */
#locations{
  text-align: center;
  background-color: blue;
  max-width: 1200px;
  height: 500px;
  background-image: url(../images/img-locations-background.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0 auto;
  border-radius: 5px;
}


#locations h2{
  display: inline-block;
  margin-top:50px;
  width: 100%;
  margin-bottom:10px;
}

.our-locations{
  display: flex;
  justify-content: center;
  height: 150px;
  width: 100%;
}

.location{
  margin: 0 20px;
  height: 200px;
  width: 200px;
  background-color: black;
  border-radius: 5px;
  transition: transform 0.2s;
}

.location:hover{
  transform: scale(1.05);
}

/* CONTACT */

.contact{
  text-align: center;
  margin: 0 auto;
}

.ttc{
  font-size: 2rem;
  font-weight: bold;
}

/* FOOTER */
footer{
padding-left:20px;
}

