* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, sans-serif;
  font-size: 22px;
  color: seashell;
  background-color: black;
  opacity: 0.9;
  text-align: center;
}
.logo {
  height: 50px;
  margin-left: 10px;
}

header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  border-bottom: 1px solid seashell;
  align-items: center;
  height: 69px;
  width: 100%;
  background-color: black;
  z-index: 5;
}

nav > ul {
  display: flex;
}

nav > ul > li {
  list-style-type: none;
  padding: 10px;
}

nav > ul > li a {
  color: seashell;
}

#hero {
  background: url('https://content.codecademy.com/courses/freelance-1/unit-4/img-mission-background.jpg') center;
  height: 700px;
  width: 1200px;
  margin: 0 auto;
}

.main-text {
  background-color: black;
  width: 100%;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.tea-month {
  width: 1000px;
  margin: 3rem auto;
}
figure img {
    width: 300px;
    height: 200px;
    margin-bottom: 10px;
}
figure {
  margin: 10px;
}
.flex-images {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

#locations {
  position: relative;
  background: url('https://content.codecademy.com/courses/freelance-1/unit-4/img-locations-background.jpg') center;
  height: 500px;
  width: 1200px;
  margin: 0 auto;
}
.locations {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.flex-box {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  justify-content: center;
  gap: 40px;
  margin-top: 15px;
}

.box {
  width: 300px;
  background-color: black;
  padding: 1rem;
  align-self: center;
  line-height: 3;
}

.contact {
  margin-top: 1rem;
  height: 200px;
  line-height: 2;
}

.copy {
  text-align: left;
  margin: 0 0 20px 20px;
  font-size: 1rem
}