.timeline-container
{
    color: #D3DAD9;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 12% 2rem;
    margin-bottom: 80px;
}

.timeline-row
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1.5fr));
    gap: 20px;
}

.timeline-col h1
{
    margin-bottom: 10px;
    justify-self: center;
}

.timeline-box
{
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 2rem;
    border-left: 3px solid;
    border-image: linear-gradient(to bottom, cornflowerblue, purple) 1 100%;
}

.timeline-content-box
{
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #D3DAD9;
    border-radius: 10px;
    padding: 2rem;
    transition: 200ms;

    opacity: 0;
    animation-duration: 1000ms;
    animation-fill-mode: forwards;
}

.timeline-content-box:hover
{
    z-index: 0;
    background-color: transparent;
    box-shadow: 40px 0 100px cornflowerblue, -40px 0 100px purple;
}

.timeline-content-box::after
{
    top: 45%;
    left: -3.10rem;
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    background-image: linear-gradient(to top, cornflowerblue, purple);
    border-radius: 1000px;
}

.timeline-label
{
    font-weight: bold;
}

.timeline-date
{
    margin-bottom: 15px;
}


.texts
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #D3DAD9;
    gap: 40px;
    margin-bottom: 80px;
}

.texts h1
{
    text-align: center;
    margin-bottom: 50px;

    opacity: 0;
    animation-duration: 1000ms;
    animation-fill-mode: forwards;
}

.texts div
{
    width: min(80%, 1000px);

    opacity: 0;
    animation-duration: 1000ms;
    animation-fill-mode: forwards;
}

.texts div img
{
    float: right;
    margin: 25px;
    border-radius: 7px;
}


@media only screen and (max-width: 500px)
{
    .timeline-content-box
    {
        padding: 0.5rem;
    }
}
