/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    font-family: 'Consolas', 'Courier New', 'Courier', 'monospace';

    background-color: black;
    color: #4af626;
}

header {
    text-align: center;
}
header h1 {
    font-size: 3em;
}
header .heading-2 {
    font-size: 1.5em;
}
header.logo-wrapper {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.counter-wrapper {
    display: inline-block;
    width: 17px;
    height: 1em;
    overflow-y: hidden;
    position: relative;
    vertical-align: middle;
}
.counter-wrapper .counter-inner {
    position: absolute;
    animation: 500ms ease-in 0ms 1 reverse both count;
}
.counter-after-text {
    display: inline-block;
    vertical-align: middle;
    height: 1em;
}

@keyframes count {
    from {
        margin-top: -9em;
    }
    to {
        margin-top: 0;
    }
}

.content-wrapper {
    text-align: center;
    margin-top: 100px;
    font-size: 1.1em;

    opacity: 0;
    animation: 300ms ease-out 300ms 1 both fadeIn;
}
.content-wrapper > a {
    cursor: pointer;
    color: #4af626;
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        margin-top: 100px;
    }
    to {
        opacity: 1;
        margin-top: 70px;
    }
}

.content {
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
    padding: 10px;
    margin: 20px auto 0;
}

.team-member {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 15px;
    margin-bottom: 15px;
}
.team-member .team-member--profile-image {
    width: 150px;
    height: 150px;
    border: 1px solid white;
}
.team-member .team-member--description {
    flex: 1;
    padding: 5px 0;
}
.team-member .team-member--description .team-member--description--name {
    font-size: 1.5em;
}
.team-member .team-member--description .team-member--description--name > span:nth-child(1) {
    vertical-align: text-bottom;
}
.team-member .team-member--description .team-member--description--name > span:nth-child(2) {
    font-size: 0.6em;
    vertical-align: text-bottom;
    display: inline-block;
    margin-left: 10px;
}
.team-member .team-member--description .team-member--description--job {
    margin-top: 5px;
    font-size: 1.1em;
}