body {
    margin: 1em auto;
    max-width: 45em;
    padding: 0 .62em;
    font-size: 1em;
    font-family: "Helvetica Neue", "Lucida Grande", sans-serif;
    line-height: 1.62;
}

h1, h2, h3 {
    line-height: 1.2;
}

pre {
    font-size: x-small;
    line-height: normal;
    padding: 5px;
}

div.art {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

h1.title {
    line-height: 0.6;
}

h1.title a {
    text-decoration: none;
    font-weight: bold;
    text-shadow: -4px -4px 1px blueviolet;
}

a {
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

div.footer {
    text-align: center;
}

div.footer a {
    text-decoration: none;
    font-size: 0.8em;
}

div.footer a:hover {
    font-weight: bold;
}

div.footer img {
    /* Hack to center the image*/
    display: block;
    margin: -0.6em auto;
}

div.photos img {
    box-shadow: 4px 4px black;
}

video {
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.shortcuts {
    display: inline-flex;
    gap: 10px 20px;
    overflow: auto;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.shortcuts > a {
    text-decoration: none;
}

.header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 0 10px;
}

.header > p {
    font-style: italic;
}

.header > hr {
    clear: both;
}

div.lucas-art {
    display: grid;
    padding: 10px;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}

@media (max-width: 600px) {
    div.lucas-art {
        grid-template-columns: repeat(2, 1fr);
    }
}

div.lucas-art img {
    width: 100%;
    height: auto;
}

/* theme */
body {
    background-color: #1e192d;
    color: #fcfcfa;
}

header {
    background-color: #27282F;
    color: #908e8f;
}

.title a {
    color: mediumspringgreen;
}

a {
    color: #5ff7f4;
}

.footer, .footer a {
    color: #908e8f;
}
