@import url(css/style.css);

.timeline {
    list-style-type: none;
  }

.timeline  li {
    --margin-li: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items:center;
    justify-content: left;
    margin-bottom: var(--margin-li);
}

.timeline li a {
    color: var(--text-color);
}

.timeline .timeline-date{
    flex: 0 0 50px;
    height: 50px;
    border-radius: 3px;
    overflow-wrap: break-word;
    text-align: center;
    box-shadow: -5px 3px 12px 1px rgba(0,0,0,0.11);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    margin-right: 10px;
}

.timeline .timeline-content {
    margin-left: 30px;
    text-align: justify;
    width: 70%;
}

.timeline .timeline-Logo{
    width: 50px;
    height: 50px;
    margin-left: 10px;
}

.timeline-dot-line{
    content: '';
    align-self: stretch;
    flex: 0 0 16px;
    display: inline-block;
    position: relative;
}

.timeline li:not(:last-child) .timeline-dot-line .timeline-line-down {
    height: calc(50% + var(--margin-li)/2);
    width: 2px;
    background-color: var(--text-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.timeline li:not(:first-child) .timeline-dot-line .timeline-line-up {
    height: calc(50% + var(--margin-li)/2);
    width: 2px;
    background-color: var(--text-color);
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.timeline li .timeline-dot-line .timeline-dot{
    height: 16px;
    width: 16px;
    background-color: var(--text-color);
    border-radius: 50%;
    position: absolute;
    top:50%;
    left:50%;
    transform: translateY(-50%) translateX(-50%);
}


.project-sample {
    width:80%; 
    max-width: 700px; 
    border-radius: 5px;
    box-shadow: -8px 3px 12px 1px rgba(0,0,0,0.11);
}