:root {
  --primary: #086838;
  --primary-dark: #03552c;
  --secondary: #91e048;
  --panel: #09380f80;
  --background: #edfff6;
  --text: #09380f;
  --accent: #ed4046;
  --accent-text: #ed4046;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
}

body {
  font-family: 'PMD', Fallback, sans-serif;
  background-color: #67af29;
  background-image: url('/assets/shrines/pokemon/landing/backgrounds/bulbasaur.webp');
  background-size: cover;
  background-position-y: -88px;
  background-position-x: center;
  padding: 32px;
  gap: 16px;
  height: calc(100vh - 64px);
  justify-content: start;

  @media screen and (max-width: 767px) {
    background-position-y: top !important;
  }
}

h1, h2, h3, p, a, span, button, li {
  font-family: 'PMD', Fallback, sans-serif;
  color: var(--text);
}

a {
  color: var(--accent);
  text-shadow: 0.08rem 0.08rem 0 var(--accent-shadow);
}

a:hover {
  text-decoration: underline;
  text-decoration-style: wavy;
}

a.active {
  text-decoration: underline;
  text-decoration-style: wavy;
}

h1 {
  font-size: 4rem;
  font-weight: bold;
  margin: 0;
  text-align: center;
  color: var(--h1);
  text-shadow: 0.15rem 0.15rem 0 var(--h1-shadow);
}

h2 {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  color: var(--h2);
  text-shadow: 0.15rem 0.15rem 0 var(--h2-shadow);
}

h3 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  color: var(--h3);
  text-shadow: 0.12rem 0.12rem 0 var(--h3-shadow);
}

p, a, span, button {
  font-size: 1.25rem;
  margin: 0;
  line-height: 100%;
}

p {
  text-shadow: 0.08rem 0.08rem 0 var(--text-shadow);
}

#header {
  display: flex;
  width: 100%;
  background: var(--background);
  padding: 8px 0;
  border-radius: 16px;
  border: 2px solid var(--primary);
  max-width: 1000px;
}

#header-title {
  flex: 1;
  display: flex;
  justify-content: center;
}

#theme {
  position: absolute;
  z-index: 1;
  top: 32px;
  right: 32px;
}

#content {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 1000px;
  flex: 1;

  @media screen and (max-width: 767px) {
    flex-direction: column;
  }
}

#pages {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 16px;
  min-width: 150px;
  flex: 0;
  background: var(--background);
  border: 2px solid var(--primary);
  border-radius: 16px;
  gap: 8px;
}

.separator {
  height: 1px;
  width: 100%;
  border-top: 1px solid var(--primary);
  margin: 8px 0;
}

#page-content {
  border-radius: 16px;
  padding: 16px;
  flex: 1;
  background: var(--background);
  border: 2px solid var(--primary);
  border-radius: 16px;
  gap: 8px;
}