html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;

    text-align: center;

    background: #222;
    color: #ddd;

    font-size: 20px;
    font-family: monospace;
}

.red { color: #f11514; }
.shadow { text-shadow: 0 0 5px; }

#pagetop {
    font-family: "verdana";
    position: relative;
    top: 10px;

    font-size: 40px;
    font-weight: bold;

    text-shadow: 0 0 4px black;
}

#content {
    width: 80%;
    margin: 60px auto;
}

.bubble {
    text-align: left;
    min-height: 30px;

    background: linear-gradient(5deg, #2b1b1b 10%, #332);

    border: 2px outset #422;
    border-radius: 3px;

    margin-bottom: 30px;
    padding: 5px;

    position: relative;
}

.link {
    position: absolute;

    top: -21px;

    background: #111;

    outline: 1px solid black;

    border-top-right-radius: 5px;
    border-top-left-radius: 5px;

    padding-left: 10px;
    padding-right: 10px;
}

.desc {
    text-align: justify;
}

a {
    color: red;
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
    font-weight: bold;
}

.badges {
    position: absolute;
    top: -24px;
    right: -15px;
}
.badges > span {
    background: #222;
    padding-left: 4px;
    padding-right: 4px;
    border: 2px inset #444;
    border-radius: 5px;
    margin-left: -7px;
}
.badges span:after {
  content: ""; /* eh I ripped this off, no clue how this works http://nicolasgallagher.com/pure-css-speech-bubbles/demo/ */
  position: absolute;
  bottom: -7px; /* value = - border-top-width - border-bottom-width */
  border-width: 7px 4px 0; /* vary these values to change the angle of the vertex */
  border-style: solid;
  border-color: #444 transparent;
  display: block;
  width: 0px;
}

.outdated {
    color: indigo;
}
.bad {
    color: red;
}
.wip {
    color: orange;
}
.out {
    color: firebrick;
}

.other {
    font-size: 12px;

    max-width: 700px;

    margin: 0 auto;
    padding: 5px;

    background: #0b0b0b;

    border-bottom: 3px dashed #666;
    border-radius: 20%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding-bottom: 3px;
}
