html, body {
  height: 100%;
}
body {
  font-family: 'Hanken Grotesk', Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  color: black;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.subtitle {
  font-size: 1rem;
  font-weight: 500;
}
.caption {
  font-size: 0.8rem;
  font-weight: 700;
}
.button {
  padding: 0.5rem 1rem;
  border: 2px solid black;
  border-radius: 4px;
  color: black;
  cursor: pointer;
  font-weight: 300;
  font-size: 0.8rem;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  position: sticky;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid black;
}
.navbar a {
  color: black;
  text-decoration: none;
  padding: 0.5rem 1rem;
}
.navbar a:hover {
  text-decoration: underline;
}
.navbar .menu {
  display: flex;
  gap: 1rem;
}
.navbar .toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  cursor: pointer;
}
.navbar .toggle span {
  width: 25px;
  height: 3px;
  background-color: white;
}
.navbar img {
  max-height: 65px;
  margin-right: 1rem;
}
.content {
  padding: 0;
}
.section {
  display: flex;
  /* align-items: center; */
  padding: 0;
  border-top: 1px solid black;
}
.section:nth-child(odd) {
  background: #FFFFF0;
}
.section-item {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid black;
}
.section-item p {
  margin: 0;
}
.section-item h1 {
  margin-top: 0;
}
@media (max-width: 768px) {
  .section {
    flex-direction: column;
  }
  .section:nth-child(even) {
    flex-direction: column;
  }
}
.footer {
  border-top: 1px solid black;
  background-color: white;
  color: black;
  text-align: center;
  padding: 1rem 0;
  width: 100%;
}
.footer a {
  color: black;
  text-decoration: none;
  padding: 0 1rem;
}
.footer a:hover {
  text-decoration: underline;
}
