body {
  background-color: #ffffff;
  color: #000000;
  font-family: 'Georgia', serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 600px;
  margin: 0 auto; /* removed top margin */
  padding: 0 20px;
  text-align: center;
}
.hero {
  display: block;
  max-width: 1000px;
  width: 90%;
  height: auto;
  margin: -25px auto 100px auto;
}
@media (min-width: 600px) {
  .hero {
    margin-bottom: 180px;
  }
}

.spacer {
  height: 100px;
}

@media (min-width: 900px) {
  .spacer {
    height: 200px;
  }
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

nav ul li {
  display: inline;
  position: relative;
}

nav ul li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -12px;
  color: #000;
}
nav ul li a {
  text-decoration: none;
  color: #000;
  font-size: 1.1em;
  transition: transform 0.2s ease, letter-spacing 0.2s ease;
  display: inline-block;
}

nav ul li a:hover {
  transform: scale(1.1);
  letter-spacing: 0.5px;
}




p {
  text-align: center;
  font-size: 0.65em;
  margin-top: 60px;
}

h2 {
  font-size: 2em;
  font-weight: normal;
  margin-bottom: 40px;
  text-align: center;
}
.divider {
  width: 60px;
  margin: 0 auto 40px auto;
  border: none;
  border-top: 1px solid #000;
}


