*
{
    font-family: "Agency FB";
    font-size: 14pt;
    word-wrap: break-word;
}

body
{
    background-color: #7f7f7f;
    margin: 0;
}

.flex-container
{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header
{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    background-color: #ffffff;
    padding: 10px;
    box-shadow: 0 0 10px 0 #000000;
    height: fit-content;
}

.menu
{
    flex-direction: column;
    gap: 50px;
    background-color: #2f2f2f;
    padding: 20px;
    flex: 1;
    height: auto;
}

.introduction
{
    display: flex;
    flex-direction: column;
    width: 75%;
    transform: translateX(-50%);
    left: 50%;
    position: relative;
    margin-top: 80px;
    background-color: #cfcfcf;
    box-shadow: 0 0 10px 0 #000000;
    border: solid 2px #00DAFF;
    padding: 10px;
}

a:link
{
    color: #ffffff;
    text-decoration: none;
    padding: 5px;
}

a:visited
{
    color: #ffffff;
}

a:hover
{
    color: #cfcfcf;
}

a:active
{
    color: #adadad;
}

.timeline > * a:link
{
    background-color: #2f2f2f;
    width: fit-content;
    color: #00DAFF;
    text-decoration: none;
    padding: 5px;
}

.timeline > * a:visited
{
    color: #00DAFF;
}

.timeline > * a:hover
{
    color: #00aac8;
}

.timeline > * a:active
{
    color: #00849b;
}

a.active
{
    background-color: #7f7f7f;
}

@media only screen and (max-width: 600px) {
    .menu
    {
        gap: 10px;
        align-self: stretch;
        width: auto;
    }

    .collapse
    {
        visibility: collapse;
    }

    .hamburgerMenuIcon
    {
        padding: 10px;
        visibility: visible;
    }

    .fa-bars::before
    {
        font-size: 28px;
    }

    .hamburgerMenuIcon:link
    {
        color: #000000;
    }

    .hamburgerMenuIcon:active
    {
        color: #7f7f7f;
    }

    .content
    {
        flex-direction: column-reverse;
    }

    .timeline
    {
        width: 100%;
    }

    .timelineLeft
    {
        width: 70vw !important;
        padding: 6vw !important;
        left: 46% !important;
    }

    .timelineRight
    {
        width: 70vw !important;
        align-items: end;
        text-align: end;
        padding: 6vw !important;
        right: 54% !important;
    }

    .line
    {
        left: 95% !important;
    }

    .timelineLeft::before
    {
        left: 82vw !important;
    }

    .timelineRight::before
    {
        left: 82vw !important;
        border-width: 16px 0 16px 16px !important;
        border-color: transparent transparent transparent #cfcfcf !important;
    }
}

.content
{
    display: flex;
    flex: 1;
}

.content > div:first-of-type
{
    flex: 7;
}

.timeline
{
    display: flex;
    flex-direction: column;
    gap: 8vw;
    position: relative;
    margin-top: 80px;
}

.timelineLeft
{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    text-align: end;
    transform: translateX(-50%);
    left: 25%;
    background: #cfcfcf;
    padding: 2.5vw;
    width: 30vw;
    position: relative;
    box-shadow: 0 0 10px 0 #000000;
    border: solid 2px #00DAFF;
}

.timelineRight
{
    display: flex;
    flex-direction: column;
    align-self: end;
    gap: 20px;
    transform: translateX(50%);
    right: 25%;
    background: #cfcfcf;
    padding: 2.5vw;
    width: 30vw;
    position: relative;
    box-shadow: 0 0 10px 0 #000000;
    border: solid 2px #00DAFF;
}

.line
{
    width: 0px;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    position: absolute;
    border-right: dashed 5px white;
}

.timelineLeft::before
{
    content: " ";
    position: absolute;
    top: 22px;
    left: 35vw;
    border: solid;
    border-width: 16px 0 16px 16px;
    border-color: transparent transparent transparent #cfcfcf;
}

.timelineRight::before
{
    content: " ";
    position: absolute;
    top: 22px;
    right: 35vw;
    border: solid;
    border-width: 16px 16px 16px 0;
    border-color: transparent #cfcfcf transparent transparent;
}

img
{
    width: 50%;
}

.technowire_logo
{
    width: 200px;
}

.timeline > * p, h1
{
    margin: 0;
}

h1
{
    font-size: 20pt;
}