@font-face {
    font-family: 'League Gothic';
    src: url('/longreads/fonts/LeagueGothic-Regular-Variable.woff2') format('woff2'),
        url('/longreads/fonts/LeagueGothic-Regular-Variable.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}
/* //font from https://www.dafont.com/vic-fieger.d852?text=Verbeter+je+wereld%2C+doe+iets%21 */
@font-face { 
    font-family: 'Edo';
    src: url('/longreads/fonts/edosz.woff2') format('woff2'),
        url('/longreads/fonts/edosz.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

:root {
    --main-bg-color: #d3d6ce;
    --main-text-color: #282b35;
    --second-color: #623d65;
    --third-color: #58bed9; 
    --font-brush: "Edo", Helvetica, Arial, sans-serif;
    --font-sans: 'League Gothic', Helvetica, Arial, sans-serif;
    --font-serif: 'Gill Sans', 'Gill Sans MT', 'Calibri', sans-serif
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--main-bg-color);
    color: var(--main-text-color);
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.3;
}

.jumbotron {
    background: url("/longreads/images/verbeter-wereld/featured.jpg");
    display: block;
    background-position: center;
    background-size: cover;
    height: 100vh;
}


.container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 2% 0 2.5%;
}

:focus {
    outline: 2px dotted var(--third-color);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

strong, b {
    font-weight: bold;
}

em, i {
    font-style: italic;
}

h1, h2, h3 {
    font-family: var(--font-brush);
    font-weight: bold;
}

a {
    color: var(--second-color);
    text-decoration-style: solid;
    text-decoration-color: var(--second-color);
    text-decoration-thickness: 2px;
}

a:hover {
    text-decoration-color: var(--second-color);
    background-color: azure;
}

.right {
    float: right;
}

.left {
    float: left;
}

.center {
    margin: 0 auto;
}
.jumbotron img {
    text-align: center;
}

article {
    margin: 10% 0;
}

article header h1 {
    color: var(--second-color);
    font-family: var(--font-brush);
    font-size: 3rem;
    font-size: clamp(3rem, 4.5vw, 3.5rem); 
    text-align: center;
    margin: 20px 0;
    background-color: azure;
    display: inline-block;
}



article .intro p {
    margin: 2% 0;
    font-weight: bold;
    font-size: 1.8rem;
    font-size: clamp(1.2rem, 2vw, 1.4rem);
}

article p {
    font-size: 1.3rem;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem); 
}

article h3 {
    font-size: 2rem;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    line-height: 1;
    margin: 6% 0 -14px 0;
    background-color: azure;
    display: inline-flex;
}

article blockquote {
    margin: 7% 0;
    display: inline-block;
}

article blockquote p {
    font-family: var(--font-sans);
    font-size: 3rem;
    font-size: clamp(2.3rem, 3vw, 4rem); 
    text-decoration: underline;
    text-decoration-thickness: 5px;
    text-decoration-color: var(--second-color);
}

@media (min-width: 1200px) {

article figure.wide {
    display: block;
    width: 100vw;
    margin-left: -20%;
}
 }

 article .nascrhrift {
     display: block;
     background-color: azure;
     padding: 2%;
     font-size: 1.2rem;
     font-size: clamp(1rem, 2.5vw, 1.2rem); 
 }