

:root {
    /*--background-color: #212121;*/
    --font: sans-serif;
    --timeline-accent: var(--bs-blue);
    --timeline-card-accent: var(--bs-success);
}

* {
    margin: 0;
    padding: 0;
}


h2 {
    padding: 0.1rem;
    margin: 0px;
    border-bottom: 4px solid var(--timeline-accent);
}


/*╺┳╸╻┏┳┓┏━╸╻  ╻┏┓╻┏━╸   ┏━┓╺┳╸╻ ╻╻  ╻┏┓╻┏━╸*/
/* ┃ ┃┃┃┃┣╸ ┃  ┃┃┗┫┣╸    ┗━┓ ┃ ┗┳┛┃  ┃┃┗┫┃╺┓*/
/* ╹ ╹╹ ╹┗━╸┗━╸╹╹ ╹┗━╸   ┗━┛ ╹  ╹ ┗━╸╹╹ ╹┗━┛*/

/*.container {*/
/*    background: none;*/
/*    font-family: var(--bs-body-color);*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    padding: 0;*/
/*    margin: 0;*/
/*}*/

/* Timeline Container */
.timeline {
    /*margin: 20px auto;*/

    /*padding: 20px;*/
}

/* Outer Layer with the timeline border */
.timeline .outer {
    border-left: 4px solid var(--timeline-accent);
    margin-left: 4em;
    padding: 20px 0px;
}

/* Card container */
.timeline > .outer > .card {
    position: relative;
    max-width: 1000px;

    margin: 0 0 20px 20px;
    padding: 5px;

    /*background: var(--timeline-card-bg);*/
    color: var(--bs-body-color);
    border-radius: 6px;
    border: 4px solid var(--timeline-accent);
}

/* Information about the timeline */
.timeline > .outer > .card > .info {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

/* the text of a timeline */
.timeline .outer .card .info p {
    margin-bottom: 0.2ex;
}

/* Title of the card */
.timeline .outer .card .info h3.title {
    /*color: var(--timeline-accent);*/
    position: relative;
    margin-top: 0rem;
    margin-bottom: 0rem;
}

/* Timeline date */
.timeline .outer .card .info h3.title span.date {
    position: absolute;
    left: -75pt;
}

/* right-aligned subtitle */
.timeline .outer .card .info h3.title span.right {
    float: right;
    font-size: 13pt;
    height: inherit;
    margin: 5px;
    margin-left: 20px;
}


/* Timeline dot  */
.timeline .outer .card .info h3.title::before {
    all: initial;
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 999px;
    left: -40px;
    top: 6px;
    border: 4px solid var(--timeline-accent);
}

