html {
    background-color: #393636;
    background-image: url(https://c1.staticflickr.com/3/2480/4016608841_a9f4c536c3_b.jpg);      
}

body {
    margin: 0 auto;
    padding: 2em 2em 4em;
    max-width: 800px;
    font-family: "", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    color: #ffffff;
    background-color: #393636;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
}
@font-face {
    font-family: 'October Crow'; 
    src: url('October Crow.ttf');
}
.classname {
    font-family: 'October Crow';
    font-size: 72pt; 
}
.classname2 {
    font-family: 'October Crow';
    font-size: 42pt; 
}
h1, h3, h4, h5, h6 {
    color: #ff0000;
    font-weight: 600;
    line-height: 1.3em;
}

h2 {
    color: #ff0000;
    font-weight: 300;
    line-height: 1.2em;
}
a {
    color: #0083e8;
}

b, strong {
    font-weight: 600;
}

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: 10px solid rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    display: block;
    margin: 1.3em auto;
    max-width: 95%;
}

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

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