#experience {
    width: 100%;
    padding-bottom: 10vh;
}

#timeline {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-bottom: 10vh;
}

#timeline .header {
    margin-bottom: 10vh;
}

.timelinesplit {
    width: 100%;
    height: 1vh;
    background-color: aliceblue;
    position: relative;
    opacity: 0;
}

.timelinesplit::after {
    width: 10vw;
    height: 10vh;
}

#timeline li {
    padding: 1vw;
    text-align: left;
    width: 100%;
    float: left;
    position: relative;
    opacity: 0;
}

#timeline .shown {
    animation: TimelineAnim 1s ease forwards;
}

#timeline .topitem {
    border-left: 1px solid var(--primary);
}

#timeline .bottomitem {
    border-left: 1px solid var(--accent);
}

#timeline .smallitem {
    padding-top: 2vh;
    padding-bottom: 2vh;
}

#timeline .smallitem-primary {
    border-left: 2px solid var(--primary);
}

#timeline .smallitem-accent {
    border-left: 2px solid var(--accent);
}

#timeline .mobile {
    display: grid;
}

#timeline .desktop {
    display: none;
}

@media (width >= 48rem) 
{
    #timeline .mobile {
        display: none;
    }

    #timeline .desktop {
        display: grid;
    }
}

@keyframes TimelineAnim {
    from {
        opacity: 0;
        left: -10vw;
    }
    to {
        opacity: 1;
        left: 0
    }
}