
body {
    background-color: whitesmoke;
    font-family: Georgia, serif;
    text-align: justify;
    line-height: 1.618;
    padding: 0;
    padding-right: 1em;
    padding-left: 1em;
    max-width:  80ch;
    color: #222;
    margin: auto;
    hyphens: auto;
}

@keyframes title-fade {
    from {
        opacity: 0.1;
        transform: translateX(-1em);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

title {
    display: block;
    font-size: 2em;
    font-weight: bold;
    margin-top: 1em;
    margin-bottom: 1em;
    opacity: 0;
    animation: title-fade 0.25s ease-out forwards;
}

h1 {
    font-size: 16px;
    margin-bottom: 0;
}

p {
    font-size: 14px;
    margin-top: 0;
}

@keyframes a-fade {
    from {
        opacity: 0.1;
        transform: translateX(1em);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

a {
    color: black;
    display: block;
    text-decoration: none;
    opacity: 0;
    animation: a-fade 0.25s ease-out forwards;
    transition: padding-left 0.05s ease-in-out, transform 0.05s ease-in-out;
}

a:hover {
    transform: skew(-10deg) !important;
    padding-left: 1em;
    color: darkgray;
}
