* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 16px;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 2px solid black;
}

.logo {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 2px;
  border: 1px solid black;
  padding: 2px 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 14px;
  text-transform: lowercase;
}

nav ul li a {
  text-decoration: none;
  color: black;
  position: relative;
}

nav ul li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: #f56b88;
}

.hero {
  background-image: linear-gradient(
      to bottom,
      rgba(255, 209, 64, 0.5),
      rgba(255, 209, 64, 0.5)
    ),
    url(../images/a-long-moerbylanga-table-festively-set-with-lengths-of-aina--f0908593ec2a123d19052f4799567cdd.webp);
  max-width: 980px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.history {
  max-width: 980px;
  min-height: 378px;
  margin: -25px auto 0 auto;
}

.history .history-title {
  text-transform: uppercase;
  font-size: 25px;
  font-weight: bold;
  border-bottom: solid 2px black;
  padding-right: 30px;
  padding-bottom: 5px;
}

.history p {
  margin-top: 20px;
}

footer {
  background-color: #ee4367;
  color: white;
  padding: 40px;
  text-align: center;
}

.footer-logo {
  font-weight: bold;
  font-size: 16px;
  border: 1px solid white;
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 5px 0;
}

.newsletter {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter input {
  padding: 10px;
  width: 300px;
  border: none;
  background-color: #f56b88;
  color: white;
  font-size: 12px;
}

.newsletter button {
  padding: 10px 20px;
  background-color: white;
  color: #ee4367;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.socials a {
  color: white;
  margin: 0 10px;
  font-size: 18px;
}

.copyright {
  margin-top: 20px;
  font-size: 12px;
}
