html {
    background: #fff;
    background-image: linear-gradient(270deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 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;
    text-align: center;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 100%;
    padding: 2em 2em 4em;
}

h1 {
    color: #222;
    font-weight: 600;
    line-height: 1.3;
    font-size: 24px;
    
}

h2 {
    margin-top: 1.3em;
    font-size: 14px;
    color: #222;
    font-weight: 600;
    line-height: 1.3;
    font-size: 16px;
}

a {
    color: #000;
    font-size: 14px;
}

p {
    color: #000;
    font-size: 14px;
}

b, strong {
    font-weight: 600;
    font-size: 14px;
}

samp {
    display: none;
}

img {
    -webkit-animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
            animation: colorize 2s cubic-bezier(0, 0, .78, .36) 1;
    background: transparent;
    border: 0px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    display: block;
    margin: 1.3em auto;
    max-width: 95%;
    white-space: nowrap;
    display: inline;
    vertical-align: top;
}

@-webkit-keyframes colorize {
    0% {
        -webkit-filter: grayscale(100%);
    }
    100% {
        -webkit-filter: grayscale(0%);
    }
}

@keyframes colorize {
    0% {
        filter: grayscale(100%);
    }
    100% {
        filter: grayscale(0%);
    }
}