BODY {
	background-color: black;
	color: #cccccc;
}

#content_main {
	padding: .5em 1em .5em 1em; /* T R B L */
}

.blink {
    /* R.I.P. text-decoration: blink; */
    animation-duration: 1s;
    animation-name: blink;
    animation-iteration-count: infinite;
    animation-timing-function: steps(1, end);
}

@keyframes blink {
    49% {
      color: inherit
    }
    50% {
      color: transparent
    }
}

#thing {
	position: absolute;
	bottom: 2px;
	right: 1ex;
	opacity: .8;
}
