html {
    background: #5d5c61;
    background-image: url(images/FreshPotManLeft-wide4.png), url(images/FreshPotManRight-wide4.png), linear-gradient(180deg, rgb(010, 010, 010) 0%, rgb(160, 150, 130) 95%);
    background-position: 0% 0%, 100% 0%;
    background-attachment: fixed;
    background-repeat: no-repeat;
    }


body {
    background: #5d5c61;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
    color: #ddd;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 800px;
    padding: 2em 2em 4em;
}

h1, h2, h3, h4, h5, h6 {
    color: darkorange;
    text-shadow: 1px 1px 2px black;
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    margin-top: 1.3em;
}

a {
    color: #0083e8;
}

b, strong {
    font-weight: 600;
}

samp {
    display: none;
}

div, iframe {
    margin: 0 auto;
}

img {
    animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
    background: transparent;
    border: 10px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    display: block;
    margin: 1.3em auto;
    max-width: 95%;
}

@keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }
}