@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;600;700;800;900&family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');


* {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
}

body, html {
    background-color: #181818;
    padding: 0 10px;
}

main {

    max-width: 600px;
    padding: 20px;
    margin: 10px auto;

    background-color: white;
    border-radius: 5px;
    border-top: 10px solid #f47521;
    box-shadow: 0 0 5px 3px black;

    transition: width .2s, height .2s;
    transition-timing-function: ease;
}

main h1 {
    font-family: 'Maven Pro';
    color: #f47521;
    font-size: 1.5em;
    margin-bottom: 20px;
    text-align: center;
}

main p {
    color: #2b2b2b;
    font-size: 1.0em;
    margin: 10px 0;
    text-align: justify;
}

main p a {
    color: #f47521;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

code {
    font-family: 'Courier New', Courier, monospace;
    color: #f47521;
}

img {
    display: block;
    margin: 10px auto;
    min-width: 80px;
    max-width: 450px;
}

figcaption {
    text-align: center;
    font-size: 0.7em;
    color: #181818;
}

figcaption a {
    display: inline;
    color: #797979;
    text-decoration: none;
    text-align: center;
}

header p, footer p {
    text-align: center;
    padding:20px;
}

header a, footer a {
    color: #f47521;
    text-decoration: none;
    font-weight: bold;
}

header i, footer i {
    font-size: 1.2em;
    vertical-align: -8px;
    cursor: pointer;
}
