/* Did you know that dart frogs are only poisonous because they eat a specific type of insect, and when kept in captivity they are harmless? https://pmc.ncbi.nlm.nih.gov/articles/PMC1885597/ */

:root {
    --accent-color: #bf1e69;
}


html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}



html {
    background-color: #f9f9f9;
    width: 100%;
    height: 100%;
}

body {
    max-width: 75rem;
    background-color: #fff;
    color: #1c1c1c;
    margin: 3rem auto;
    padding: 2rem;
    font-family: Arial, sans-serif;
    line-height: 1.50em;
}

a {
    color: var(--accent-color);
    text-decoration:none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

hr {
    margin: 4rem;
    border: none;
    border-top: 1px solid #ccc;
}

h2 {
    font-size: 1.2rem;
    margin-top: 2rem;
}

.site-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.site-title {
    text-decoration: none;
    color: inherit;
    font-style: italic;
}

.main-nav ol {
    margin: 0;
    padding: 0;
    display: inline-flex;
    list-style: none;
    gap: 1rem;
}

article header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0 0 2rem;
}

article header > * {
    margin: 0;
}

.article-meta {
    font-style: italic;
}

.img-page img {
    display: block;
    max-width: 100%;
}

footer {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.8rem;
}
