* {
    box-sizing: border-box;
    /*background: rgba(0,0,0,0.1);*/
}

a {
    text-decoration: inherit;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

html {
    scroll-behavior: smooth;
    font-family: "NationalPark-Light";
    font-size: 0.75rem;
    font-weight: normal;
}

@media (min-width: 768px) {
  html {
    font-size: 1.25rem;
  }
}

@media (min-width: 2000px) {
  html {
    font-size: 1.5rem;
  }
}

body {
    font-size: 1.5rem;
    line-height: 1.15;
}

#breadcrumbs > li {
    display: inline-block;
}

#breadcrumbs >li:after {
    content: "→";
    margin:0 1rem;
}
#breadcrumbs >li:last-child:after { 
    content: "";
}

header {
    position: sticky;
    background-color: white;
    top: 0rem;
    padding: 1rem;
}

footer {
    padding: 1rem;
}

main {
    margin-top: 1rem;
    margin-bottom: 7rem;
    padding: 0rem 1rem;
    min-height: calc(100vh - 15.5rem)
}

section {
    margin-top: 4rem;
}

.items {
    margin-top: 2rem;
    column-count: 1;
    column-gap: 1rem;
}

@media (min-width: 768px) {
    .items {
        column-count: 2;
    }
}

@media (min-width: 1400px) {
    .items {
        column-count: 2;
    }
}

.items > * {
    display: block;
    max-width: 100%;
    margin-bottom: 1rem;
    break-inside: avoid;
}

article a {
    max-width: 100%;
}

article img {
    width: 100%;
    height: auto;
}

article h2 {
    line-height: 1;
}


/* CONTENT */

.content p {
    margin-top: 1rem;
}

.content ul {
    margin-top: 1rem;
}

.content ul > li {
    list-style-type: circle;
    list-style-type: "- ";
    list-style-position: outside;
    margin-left: 0.8rem;
}
