#work-history{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.work-section{
    margin: 2em 0;
    display: flex;
    flex-direction: row;
    flex: 1;
}
.work-text{
    flex: 2;
    display: flex;
    flex-direction: column;
    padding: 2.5% 5%;
    border-radius: 5px;
    box-shadow: 0 0px 2px 1px rgba(0,0,0,0.2);
    transition: ease-in-out 0.17s;
}
.work-section:hover .work-text{
    transition: ease-in-out 0.17s;
    background-color: white;
    box-shadow: 0 0px 3px 2px rgba(60, 112, 255, 0.3);
}
.work-section:hover .timeline-line{
    transition: ease-in-out 0.17s;
    font-weight: bold;
    border-color:rgb(60, 112, 255);
    border-width: 2px;
}
.work-section:hover .work-end{
    transition: ease-in-out 0.17s;
    color:rgb(60, 112, 255);
}
.work-section:hover .work-start{
    transition: ease-in-out 0.17s;
    color:rgb(60, 112, 255);
}
.work-section-header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 2.5% 0;
    font-size: 1.125em;
}
.work-description-item{
    padding: 1% 0;
}



.work-timeline{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0% 5%;
    position: relative;
}
.work-end{
    padding: 0 0 2.5% 0;
}
.work-start{
    padding: 2.5% 0 0 0;
}
.timeline-line{
    transition: ease-in-out 0.17s;
    height: 100%;
    border-width: 1px;
    border: 1px solid black;
    border-radius: 5px;
    width: 0%;
}
.timeline-ellipses{
    position: absolute;
    top: 100%;
    height: 4em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4% 0;
}
.timeline-ellipse{
    border-radius: 50%;
    border: 1px solid black;
    width: 0.5em;
    height: 0.5em;
}