
@font-face {
    font-family: "Univers";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('https://wetten.show/assets/fonts/UniversRegular.ttf') format('woff2');
}

@font-face {
    font-family: "Univers";
    font-style: italic, oblique;
    font-weight: 400;
    font-display: swap;
    src: url('https://wetten.show/assets/fonts/UniversCnRg.ttf') format('woff2');
}

@font-face {
    font-family: "Univers";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('https://wetten.show/assets/fonts/UniversBold.ttf') format('woff2');
}


:root {
    --txt-secondary: #999;
    --font: "Univers", sans-serif;
}

* {
    box-sizing: border-box;
}


html, body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: var(--font);


    font-weight: normal;
    line-height: 1.2;
    color: black;
}

h1 {
    font-family: var(--font);
    font-size: 2.286em;
    font-weight: bold;
    line-height: 1.2;
    margin: 3rem 0 1rem;
	position: relative;
}

h2 {
    font-family: var(--font);
    font-size: 1.429rem;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}

h3 {
    font-family: var(--font);
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.2;
    text-transform: uppercase;
}

small {
    font-family: var(--font);
    font-size: 0.714rem;
    font-weight: normal;
    line-height: 1.2;
}

.txt_secondary {
    color: var(--txt-secondary);
}

hr {
    border: 0;
    border-top: 1px solid black;
}

.content_width, section {
    margin: 0 auto;
    max-width: min(620px, 90vw);
}

.two_cols_uneven, section {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-gap: 1rem;
    align-items: stretch;
}

p {
    margin: 1rem 0;
}

section {
    position: relative;
    padding-top: 4rem;
}
section > * {
    padding-bottom: 2rem;
}

section:not(:last-of-type) > * {
    border-bottom: 1px solid black;
}

section>*:nth-child(2n-1) {
    display: flex;
    flex-direction: column;
    padding-bottom: 3.2rem;
}

.img_right {
    position: absolute;
    right: 0;
    top: 2.5rem;
    width: 8rem;
    rotate: 20deg;
}

/* make sure the baseline of the date equals the h2 header next to it */
section>*:nth-child(2n-1) time {
    line-height: 2;
}

a {
    font-family: var(--font);
    color: black;
    text-decoration: underline;
    transition: color .15s;
}

a:visited {
    color: black;
}

a:hover {
    color: var(--txt-secondary);
    cursor: pointer;
}

nav {
    display: flex;
    gap: 1rem;

    border: 1px solid black;
    border-width: 1px 0;
    
    padding: 1rem 0 6rem;
}

.achternaam {
	font-style: italic;
}
