body {
    margin: 0;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    font-size: 1.2em;
}
li {
    margin-top: .3em;
    margin-bottom: .3em;
}
h1 {
    font-size: 3em;
    margin: 0 0 .5em 0;
}
.layout {
    display: flex;
}

.selfie {
    float: left;
    width: 100%;
    margin: 0 0 1em 0;
    border: 1px solid #000;
}

.side {
    padding: 1em;
    min-width: 17em;
    max-width: 20em;
    font-size: .8em;
    background-color: #031D2A;
    color: #d7d7d7;
    box-shadow: 5px 0 20px 0 #999;
}
.side a {
    color: white;
}
.side dd {
    margin: 0 0 .3em 0;
    font-weight: bold;
    color: #555;
}
.side dt {
    margin: 0 0 1em 1em;
}

.pet-projects li.dead::before {
    content: '(dead) ';
    font-size: .8em;
}
.pet-projects li.dead, .pet-projects li.dead a {
    color: #666;
}

.main {
    padding: 1em;
    max-width: 60em;
}


@media screen and (max-width: 480px) {
    .layout {
        flex-direction: column;
    }
    .side, .main {
        width: 100%;
    }
}