html {
    scroll-behavior: smooth;
  }

:root {
    --navbar-height: 70px;
}

.anchored-content {
    scroll-margin-top: 140px;
}

p {
  font-family: Parkinsans, sans-serif;
}

footer {
  text-align: center;
  padding: 10px;
  color: grey;
}

@keyframes fadeNavIn {
    0%   { background-color: transparent; }
    50%  { background-color: transparent }
    100% { background-color: black; }
  }
@keyframes fadeNavOut {
    0%   { background-color: black; }
    50%  { background-color: transparent; }
    100% { background-color: transparent; }
  }

@media (max-width: 546px) {
  .img-spacer {
    max-height: 100%;
    max-width: 100%;
    margin: auto;
    display: block;
    margin-bottom: 30px;
  }

  .container-pragmatic-privacy {
    margin-top: 80px;
  }

  .text-spacer {
    padding-right: 0;
  }
}