/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
    box-sizing: border-box;
}

/* 2. Remove default margin */
* {
    margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
    html {
        interpolate-size: allow-keywords;
    }
}

body {
    /* 4. Add accessible line-height */
    line-height: 1.5;
    /* 5. Improve text rendering */
    -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
    font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
    text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
    text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
    isolation: isolate;
}

html {
    font-size: 16px;
}
/* Text breakpoints */
h1 {
    font-size: 2rem;
    margin: 1rem 0;
    line-height: 1;
}
h2 {
    font-size: 1.5rem;
    line-height: 1;
    margin: 2.625rem 0 0.875rem;
}
h3 {
    font-size: 1rem;
    line-height: 1;
    margin: 2.625rem 0 0.875rem;
}
blockquote {
    font-size: 1.5rem;
    line-height: 1;
    font-family: "Special Elite", monospace;
    margin: 2.625rem 0 0.875rem;
}
@media (min-width: 576px) {
    h1 {
        font-size: 3.3rem;
        margin: 1rem 0;
        line-height: 1;
    }
    h2 {
        font-size: 2rem;
        line-height: 1;
        margin: 2.625rem 0 0.875rem;
    }
    h3 {
        font-size: 1.5rem;
        line-height: 1;
        margin: 2.625rem 0 0.875rem;
    }
    blockquote {
        font-size: 2rem;
        line-height: 1;
        font-family: "Special Elite", monospace;
        margin: 2.625rem 0 0.875rem;
    }
}
@media (min-width: 768px) {
}

body {
    margin: 1rem;
    color: #222;
    background-color: #eeeeee;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}
a {
    color: #33a;
}
a:hover {
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Special Elite", monospace;
}
p {
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0 0 1.5rem;
}
ul {
    margin: 1rem 0;
}
li {
    line-height: 1.7;
    font-size: 0.9375rem;
    margin: 0.325rem 0;
}
figure {
    border-radius: 0.25rem;
    margin: 3rem 0 2rem;
    padding: 1rem;
    border: 1px solid #ccc;
    /*background-color: white;*/
    transform: rotate(-1.5deg);
    background: radial-gradient(circle,rgba(255, 255, 255, 1) 0%, #fafafa 60%, rgba(255, 255, 255, 1) 100%);
    filter: drop-shadow(0.5rem 0.5rem 0.5rem #ccc);
    transition: transform 0.25s;
}
figure:hover {
    transform: rotate(-1deg);
}
figure:first-child {
    margin-top: 1rem;
}
html.js figure img.loading {
    filter: grayscale(10%) contrast(2%);
}
figure img {
    transition: filter 3s ease-in;
    border-radius: 0.25rem;
    margin: 0 0 1rem;
    /*filter: grayscale(10%) contrast(110%);*/
    background-color: #ccc;
}
figure figcaption {
    margin: 1rem 2rem 0;
    text-align: center;
    font-family: "Caveat", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    color: #555;
}
#container {
    max-width: 575px;
    margin: 0 auto;
}
header {
    text-align: center;
    margin: 0 0 3rem;
}
header h1 {
    margin-bottom: 0;
}
header p {
    margin: 0;
}
header p span {
    text-wrap: nowrap;
}
#main-title {
    text-align: left;
    margin-top: 4rem;
}
#main-title ul.breadcrumb {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: left;
}
#main-title ul.breadcrumb li {
    display: inline;
}
#main-title ul.breadcrumb li:after {
    content: '>';
    padding: 0 0.25rem;
}
#main-title ul.breadcrumb li:last-child:after {
    content: none;
    padding: 0;
}
footer {
    margin: 3rem auto 4rem;
    padding: 4rem 0;
    border-top: 1px solid #ccc;
    /*border-bottom: 1px solid #ccc;*/
    max-width: 600px;
    color: #666;
}
footer .mono {
    letter-spacing: 0.25rem;
    color: #333;
    font-weight: bold;
}
footer p {
    font-family: "Special Elite", monospace;
}

ul.inline-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
ul.inline-list li {
    display: inline;
}
ul.inline-list li:after {
    content: ', ';
}
ul.inline-list li:last-child:after {
    content: '';
}
