html {
    background: #e6e9e9;
    background-image: linear-gradient(270deg, rgb(230, 233, 233) 0%, rgb(216, 221, 221) 100%);
    -webkit-font-smoothing: antialiased;
}

body {
    background: #fff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
    color: #545454;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 800px;
    padding: 4em 4em 4em;
}

h1,
h2,
h4,
h5,
h6 {
    color: #222;
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    color: #361d53;
}

a {
    color: #0083e8;
}

b,
strong {
    font-weight: 600;
}

samp {
    display: none;
}

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 {
    100% {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }

    0% {
        -webkit-filter: grayscale(0%);
        filter: grayscale(0%);
    }
}

h3 {
    font: 100 30px/1.6 'Arizonia', Helvetica, sans-serif;
    color: #07565a;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}
ul hr {
    margin-top: 5px;
    margin-bottom: 5px;
    border-top: 1px solid #b5d38d;
}
