@font-face {
    font-family: 'R-I-B-Type';
    src: url('fonts/R-I-B/R-I-B-Type.otf') format('opentype');
}

@font-face {
    font-family: 'Telefon';
    src: url('fonts/Telefon/Telefon-Normal.otf') format('opentype');
}

:root {
    --accent: #009688;
    --accent-dark: #00695c;
}

body {
    font-family: 'R-I-B-Type', sans-serif;
    max-width: 15cm;
    margin: auto;
    padding: 2em;
    font-size: 16px;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

h1 {
    text-align: center;
    font-family: 'Telefon', sans-serif;
    margin-bottom: 0.5em;
    font-weight: 100;
    font-size: 28px;
    color: #111;
}

.logo {
    display: block;
    margin: 20px auto;
    width: 80px;
    height: 80px;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    border-radius: 8px;
}

.quote {
    font-style: italic;
    border-left: 4px solid #ccc;
    padding-left: 1em;
    margin: 1em 0;
    color: #555;
}

ul {
    list-style-type: disc;
    padding-left: 1.5em;
}

li::marker {
    color: var(--accent);
}

.grey-section {
    background-color: #f4f4f4;
    padding: 1em;
    margin: 1.5em 0;
    border-radius: 4px;
}


.team-section {
    margin-top: 2em;
}

.member-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 0.25em 0;
}

.member-row span.name {
    font-weight: bold;
}

.member-row span.title {
    color: #555;
    font-style: italic;
}


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

a:hover,
a:focus {
    color: var(--accent-dark);
    text-decoration: underline;
}

a:visited {
    color: var(--accent);
}

@media (max-width: 600px) {
    body {
        font-size: 17px;
        padding: 1em;
    }

    .logo {
        width: 60px;
        height: 60px;
    }
}

