* {
    box-sizing: border-box;
}
html {
    margin: 0;
    padding: 0;
}
body {
    background-color: #efefef;
    color: #333;
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
}
.inside-a-dog-its-too-dark-to-read {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-color: #000;

    z-index: -1;

    background-image: url(../static/groucho.jpg);
    background-size: contain;
    background-position: bottom;
    background-repeat: no-repeat;
}
.inside-a-dog-its-too-dark-to-read > div {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;

}
.inside-a-dog-its-too-dark-to-read > div > span {
    display: block;
    height: 1px;
    font-family: Helvetica;
    position: absolute;
    color: #080808;
    font-size: 21vw;
    font-weight: bold;
    line-height: 1px;
}
.l {
    bottom: 59vh;
    left: 30vw;
    -webkit-animation: waggle 0.3s infinite ease-out;
    -moz-animation: waggle 0.3s infinite ease-out;
    animation: waggle 0.3s infinite ease-out;
}
.r {
    bottom: 59vh;
    left: 50vw;
    -webkit-animation: waggle 0.3s infinite ease-out;
    -moz-animation: waggle 0.3s infinite ease-out;
    animation: waggle 0.3s infinite ease-out;
}
@-webkit-keyframes waggle {
    0% { margin-bottom: 0; }
    50% { margin-bottom: -7vw; }
    100% { margin-bottom: 0; }
}
@-moz-keyframes waggle {
    0% { margin-bottom: 0; }
    50% { margin-bottom: -7vw; }
    100% { margin-bottom: 0; }
}
@keyframes waggle {
    0% { margin-bottom: 0; }
    50% { margin-bottom: -7vw; }
    100% { margin-bottom: 0; }
}
.flip {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
    -ms-filter: "FlipH";
}
.outer {
    background-color: #efefef;
}
.content {
    max-width: 800px;
    margin: 0;
    padding: 1em;
}
/*
body.home .content {
    margin-top: 100vh;
}
*/
.responsive {
    max-width: 100%;
}
h1 {
    border-bottom: 1px solid #555;
}
h2 {
}
article {
    margin-left: 1em;
}
article > h1 {
    border: none;
    font-size: 130%;
}
code {
    font-family: "Inconsolata-g", "Inconsolata", Monaco, monospace;
}
footer {
    text-align: right;
    color: #777;
    border-top: 1px solid #555;
    font-size: 75%;
}
footer a,
footer a:visited,
footer a:active,
footer a:hover {
    color: #777;
}
footer p {
    margin-bottom: 0;
    padding-bottom: 1em;
}
