/* style */

body {
    background-color: #000;
    color: #fff;
    font-family: 'MS Gothic', monospace;
    text-shadow: 2px 2px 2px #f00;
    image-rendering: pixelated;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #c00 #600;
}

*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: #600;
}

*::-webkit-scrollbar-thumb {
    background:#c00;
}

/* main */

.container {
    border: 1px solid #f00;
    max-width: 600px;
    margin: auto;
    padding: 5px 20px;
}

h1 {
    font-style: italic;
}

a {
    font-style: italic;
    color: #f00;
}

p {
    font-size: 1.2em;
}

/* entry */

img.thumbnail {
    width: 150px;
    float: left;
    margin-right: 20px;
}

div.entry ul {
    list-style-type: none;
    margin-left: -30px;
}

div.entry div.text {
    height: 225px;
    overflow-y: scroll;
}

div.entry {
    margin-bottom: 15px;
}