@font-face {
    font-family: 'Young Serif';
    src: url('./fonts/young_serif/font.ttf') format('truetype');
}

:root {
    --background: #242121;
    --text: #f7f3f0;
    --link: #FF8C42;
}

body {
    padding: 0 10px;
    margin: 50px auto;
    max-width: 650px;
    background-color: var(--background);
    color: var(--text);
    font-family: 'Young Serif', Georgia, serif;
    font-size: 0.9rem;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

#maincontent {
    max-width: 42em;
    margin: 15px auto;
}

a {
    color: var(--link);
    text-decoration: none;
}

a:hover, a:focus {
    text-decoration: underline;
}

.timeline {
    position: relative;
    margin-top: 2rem;
}

.timeline-item {
    border: 1px solid var(--text);
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    margin-left: 2rem;
    position: relative;
    border-radius: 4px;
}

.timeline-item strong {
    margin-bottom: 0.25rem;
}

.timeline-item p {
    opacity: 0.888;
    margin-bottom: 0;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: var(--text);
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--text);
}