html {
    background: #e6e9e9;
    background-image: linear-gradient(270deg, #cf8cfc 0%, #ff5400 100%);

}

body {
    background: rgba(0, 0, 0, 0.025);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
    color: #545454;
    font-family: "sans", Tahoma, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 800px;
    padding: 2em 2em 4em;
}
div.main {
    
}
h1 {
    color: #ff5400;
    font-weight: 600;
    line-height: 1.3;
}
h2 {
    color: #cf8cfc;
    font-weight: 600;
    line-height: 1.3;
}
h3, h4, h5, h6 {
    color: #545454;
    font-weight: 600;
    line-height: 1.3;
}

h2 {
    margin-top: 1.3em;
}

a {
    color: #919092;
}
a:link {
  color: #919092;
}


a:visited {
  color: black;
}
a:hover {
    color: black;
}
a.andy {
    color: #ff5400;
    font-size: 40px;
}
a.event {
    color: #cf8cfc;
    font-size: 30px;
}

b, strong {
    font-weight: 600;
}

samp {
    display: none;
}

img {
    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%;
}

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