/* Root */
:root {
    --blue: #55bbbb;
    --pink: #d6329f;
    --white: ghostwhite;
    --black: black;
    --clear: rgba(0, 0, 0, 0);
    --clearWhite: rgba(248, 248, 255, 0.5);
  }

/* Background */
body
{
    background-image: linear-gradient(to bottom left, #333333, #111111);
}

/* Navbar Elements */
.navbarContainer
{
    margin: auto;
    padding-top: 50px;
    padding-bottom: 200px;
    width: 80%;

    font-family: Helvetica, sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    color: var(--white);
}
.navbarContainer a:link
{
    padding: 20px;
    color: var(--white);
    text-decoration: none;
}
.navbarContainer a:visited
{
    color: var(--white);
    text-decoration: none;
}
.navbarContainer a:hover
{
    color: var(--pink);
    text-decoration: none;
}
.navbarContainer a:active
{
    text-decoration: none;
}

/* Content Container */
.contentContainer
{
    margin: auto;
    width: 80%;
}

.videoContainer
{
    margin: auto;
    display: block;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
}

.blockNarrow
{
    margin: auto;
    max-width: 500px;
    padding-top: 50px;
    padding-bottom: 25px;

    font-family: Helvetica, sans-serif;
    font-style: normal;
    text-align: center;
    color: var(--white);
}

.blockNarrow h1
{
    margin: auto;
    padding-bottom: 25px;

    font-size: 46px;
    font-weight: lighter;
    line-height: normal;
}

.blockNarrow h2
{
    margin: auto;

    font-size: 30px;
    font-weight: lighter;
    line-height: normal;
}

.blockNarrow p
{
    margin: auto;
    padding-top: 25px;

    font-size: 20px;
    font-weight: lighter;
    line-height: 1.6em;
}

.blockNarrow a
{
    color: var(--blue);
    text-decoration: none;
}

.blockNarrow a:visited
{
    color: var(--blue);
    text-decoration: none;
}

.blockNarrow a:hover
{
    cursor: pointer;
    color: var(--pink);
    text-decoration: none;
}

.blockNarrow a:active
{
    text-decoration: none;
}

.blockNarrow img
{
    margin: auto;
    display: block;
    width: 100%;
    padding-top: 25px;
}

.blockWide
{
    margin: auto;
    max-width: 1000px;

    font-family: Helvetica, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: lighter;
    text-align: left;
    line-height: 1.6em;
    color: var(--white);
}

.blockWide h1
{
    margin: auto;
    padding-bottom: 25px;

    font-size: 46px;
    font-weight: lighter;
    text-align: center;
    line-height: normal;
}

.blockWide h2
{
    margin: auto;
    padding-top: 20px;
    padding-bottom: 8px;

    font-size: 30px;
    font-weight: lighter;
    line-height: normal;
}

.blockWide p
{
    margin: auto;
    padding-bottom: 20px;

    font-size: 20px;
    font-weight: lighter;
    text-align: justify;
    line-height: 1.6em;
}

.blockWide a
{
    color: var(--blue);
    text-decoration: none;
}

.blockWide a:visited
{
    color: var(--blue);
    text-decoration: none;
}

.blockWide a:hover
{
    cursor: pointer;
    color: var(--pink);
    text-decoration: none;
}

.blockWide a:active
{
    text-decoration: none;
}

.blockWide img
{
    margin: auto;
    display: block;
    width: 100%;
}
/* Area Container ######################################*/


.timelineContainer
{
    margin: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
}

.timelineOptionsContainer
{
    margin: 0px 0px 0px auto;

    width: fit-content;
    height: fit-content;
}

.timelineOption
{
    transition: 0.1s;
    margin: 0px 0px 6px;
    border: 0px;
    padding: 0px;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;

    color: var(--white);
    background-color: transparent;

    font-family: Helvetica, sans-serif;

    cursor: pointer;
}
  
.timelineOption:hover
{
    transition: 0.1s;
    color: var(--pink);
}

.timelineOptionInactive
{
    transition: 0.1s;
    margin: 0px 0px 6px;
    border: 0px;
    padding: 0px;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;

    color: rgba(255, 255, 255, 0.3);
    background-color: transparent;

    font-family: Helvetica, sans-serif;

    cursor: pointer;
}

.timelineOptionInactive:hover
{
    transition: 0.1s;
    color: var(--pink);
}

.timelineOptionIcon
{
    transition: 0.1s;
    align-self: center;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    background-color: white;
    border-radius: 25%;
}

.timelineOptionIconInactive
{
    transition: 0.1s;
    align-self: center;
    width: 15px;
    height: 5px;
    margin-right: 5px;
    background-color: white;
    border-radius: 25%;
}

.timelineScroll
{
    overflow-y: visible;
    overflow-x: scroll;
    white-space: nowrap;
}

.timelineLine
{
    margin: 0;
    height: 60px;

    width: fit-content;

    display: flex;
    flex-direction: row;
}

.timelineLineSplitter
{
    width: 120px;
    height: 5px;
    background-color: var(--white);
}

.timelineLineYearContainer
{
    width: min-content;
    height: 25px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap ;
}

.timelineLineYearLine
{
    margin: auto;
    width: 5px;
    height: 25px;
    background-color: var(--white);
    border-radius: 25%;
    z-index: 1;
}

.timelineLineYearText
{
    width: fit-content;
    color: var(--white);
    font-family: Helvetica, sans-serif;
    z-index: 1;
}

.timelineEntry
{
    width: 120px;
    height: 50px;

    margin: 0px 1px;
    border-radius: 2px;

    background-color: rgba(255, 255, 255, 0.1);

    display: flex;
    flex-direction: row;
    justify-content: center;
}

.timelineEntryText
{
    margin: auto;
    width: fit-content;
    height: fit-content;

    color: var(--white);

    text-align: center;
    font-family: Helvetica, sans-serif;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    /*box-shadow: inset 0 0 5px var(--black);*/
    background-color: transparent;
    border-radius: 10px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 10px;
  }


.resumeContainer
{
    margin: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;

    font-family: Helvetica, sans-serif;
}
.resumeContainer h3
{
    margin: auto;
    padding: 10px;

    font-size: 18px;
    text-align: center;
    color: var(--white);
}
.resumeContainer h4
{
    margin: auto;
    font-size: 14px;
    text-align: left;
    float: left;
    color: var(--blue);
}
.resumeContainer p
{
    margin: auto;

    font-size: 14px;
    font-style: normal;
    font-weight: lighter;
    text-align: right;
    color: var(--white);
}

.projectAreaContainer
{
    margin-bottom: 250px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.projectAreaListContainer
{
    margin-bottom: 250px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    flex-wrap: wrap;
}

.projectContainer
{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-wrap: nowrap;
    /*flex-basis: 300px;*/
    box-sizing: border-box;
    margin: 10px;
    padding: 10px;

    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    font-family: Helvetica, sans-serif;
    text-align: left;
}
.projectContainer:hover
{
    background-color: rgba(255, 255, 255, 0.4);
}
.projectContainer h1
{
    margin: 0px;
    padding: 0px;
    font-size: 26px;
    font-style: normal;
    font-weight: lighter;
}
.projectContainer p
{
    margin: 0px;
    padding: 0px;
    font-size: 18px;
    line-height: 1.5;
    text-align: left;
}
.projectContainer img
{
    display: block;
    width: 100%;
}
.projectContainerSummary
{
    margin: 10px;
    font-size: 18px;
    font-family: Helvetica, sans-serif;
}
.projectContainerSummary h4
{
    margin: auto;
    text-align: left;
    float: left;
}
.projectContainerSummary p
{
    margin: auto;

    font-style: normal;
    font-weight: lighter;
    text-align: right;
    color: var(--white);
}

.download_button
{
    margin-top: auto;
    border: none;
    color: var(--white);
    background-color: var(--blue);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    padding: 15px 32px;
    align-self: center;
}
.download_button:hover
{
    background-color: var(--pink);
}
.download_button:active
{
    color: var(--pink);
    background-color: var(--white);
}
.download_button:focus
{
    outline: none;
}

.sectionContainer
{
    margin: 50px auto;
    background-color: var(--blue);
    clear: both;

    font-family: Helvetica, sans-serif;
    font-size: 46px;
    font-style: normal;
    font-weight: lighter;
    text-align: center;
    color: var(--black);
}

/*hidable DIV*/
.hidableActive
{
    transition: 0.5s; 
    height: auto;
    display: block;
}

.hidableInactive
{
    transition: 0.5s; 
    height: 0px;
    display: none;
}

/*clearwhite*/
.clearWhite
{
    color: var(--clearWhite);
}

/*Footer*/
footer
{
    padding-top: 500px;

    font-family: Helvetica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: lighter;
    text-align: center;
    color: var(--pink);
}

footer a:link
{
    color: var(--pink);
    text-decoration: none;
}

footer a:visited
{
    color: var(--pink);
    text-decoration: none;
}
footer a:hover
{
    color: var(--blue);
    text-decoration: none;
}
footer a:active
{
    color: var(--pink);
    text-decoration: none;
}