body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: "Cinzel", Roboto;
}

.header-hero {
  background-color: #071f29;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.header {
  color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.header div {
  font-size: 28px;
  font-weight: bold;
}
.header ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  gap: 24px;
}
.header li {
  list-style-type: none;
}
.header a {
  color: white;
  text-decoration: none;
}

.hero {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 100px;
  align-items: center;
}
.hero-left {
  width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 8px;
}
.hero-main {
  font-size: 48px;
  font-weight: 900;
  color: #f9faf8;
}
.hero-secondary {
  font-size: 18px;
  color: #e5e7eb;
}
.hero button {
  background-color: #20b69b;
  border: 0px;
  border-radius: 7px;
  padding: 8px 30px;
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.gallery {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  padding: 40px;
  gap: 16px;
}
.gallery h2 {
  font-size: 36px;
  font-weight: 900;
  color: #1f2937;
}
.gallery p {
  padding: 0px;
  margin: 0px;
}
.items {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}
.items img {
  height: 200px;
  width: 200px;
  border-color: #20b69b;
  border-radius: 10px;
  border-width: 5px;
  border-style: solid;
  margin: 0;
}
.items p {
  height: 200px;
  width: 200px;
  text-align: center;
  margin: 0;
}

.quote {
  background-color: #e5e7eb;
  padding: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quote-container {
  width: 800px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.quote h3 {
  padding: 0px;
  margin: 0px;
  font-size: 36px;
  font-weight: 300;
  color: #1f2937;
}
.quote h4 {
  padding: 0px;
  margin: 0px;
  margin-left: auto;
  font-size: 24px;
}

.call-to-action {
  padding: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.call-to-action-box {
  background-color: #17585a;
  border-radius: 8px;
  padding: 60px;
  width: 1200px;
}
.inner-box {
  padding-left: 192px;
  padding-right: 192px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.call-to-action-box h3 {
  font-size: 28px;
  font-weight: bold;
  color: white;
  padding: 0px;
  margin: 0px;
}
.call-to-action-box p {
  font-size: 16px;
  color: white;
  padding: 0px;
  margin: 0px;
}
.call-to-action-box button {
  background-color: #20b69b;
  border-radius: 6px;
  padding: 6px 32px;
  color: white;
  border-color: white;
  font-weight: bold;
  border-style: solid;
}

.footer {
  background-color: #1f2937;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.footer p {
  color: #e5e7eb;
  padding: 0px;
  margin: 0px;
}
