header.top-navigation {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 5;
}

div.container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0);
  box-shadow: 0 0 10px 4px #00000000;
  transition: background-color 0.2s ease;
  padding: 0.5rem 1rem;
}

div.top-navigation-wrap {}

div.top-navigation-wrap > img.chocopalette-logo {
  height: 70px;
  width: 150px;
}

div.top-navigation-wrap > a:link {
  font-size: 28px;
  font-weight: bold;
  color: #D77A87;
}

div.top-navigation-main {}

nav.main-nav {}

ul.main-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  gap: 1rem;
}

li.top-level-entry-container {
  position: relative;
}

li.top-level-entry-container > a:link,
li.top-level-entry-container > a:visited,
li.top-level-entry-container.active > a:link,
li.top-level-entry-container.active > a:visited {
  font-family: "Titan One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  color: #FFF;
}

main.main-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

div.main-page-welcome-content {
  height: 100vh;
  position: relative;
}

div.main-page-welcome-content::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  background: url(../img/members.jpg) no-repeat center center / cover;
}

article.main-page-content {
  margin-bottom: 0;
  padding: 0;
}

div.section-wrapper > section > h2 {
  text-align: center;
}

div.section-wrapper > section > h2 > a:link,
div.section-wrapper > section > h2 > a:visited {
  color: #D77A87;
}

div.section-wrapper {}

section {
  background-color: #FFF;
  margin: 2rem;
  padding: 2rem;
}

div.section-content.overflow {
  height: 300px;
  overflow: scroll;
  overflow-x: visible;
}

div.section-content > ul > li.list-item {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

div.section-content > ul > li.list-item > a > div.date {
  font-weight: bold;
}

footer.page-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #383937;
  color: #FFF;
}

footer.page-footer > p.page-footer-legal-text {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 767px) {
  div.top-navigation-wrap > img.chocopalette-logo {
    height: 50px;
    width: 100px;
  }

  li.top-level-entry-container > a:link,
  li.top-level-entry-container > a:visited,
  li.top-level-entry-container.active > a:link,
  li.top-level-entry-container.active > a:visited {
    font-size: 20px;
  }

  footer.page-footer > p.page-footer-legal-text {
    font-size: 14px;
  }
}
