#watermark {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 5rem;
  width: 100vw;
  z-index: 100;
}

#watermark p {
  color: rgba(0, 0, 0, 0.08);
  font-size: 4rem;
  font-weight: bold;
  line-height: 5rem;
  text-align: center;
  transform: rotate(-35deg);
}

footer {
  --base-rgb: 27, 28, 29;
  --text: rgb(var(--base-rgb)) !important;

  a {
    color: var(--text) !important;
    border-bottom: 1px solid rgba(var(--base-rgb), 0.25);
    &:hover {
      color: black;
      border-bottom: 1px solid rgba(var(--base-rgb), 1);
    }
  }
  .resources {
    ul {
      list-style-type: none;
      padding-left: 0 !important;
      li {
        margin: 0.25rem 0;
      }
    }
  }
}

/* https://css-tricks.com/two-issues-styling-the-details-element-and-how-to-solve-them/ */
details summary {
  cursor: pointer;
}

details summary > * {
  display: inline;
}

#country-map {
  height: 50vh;
}
