timeline {
    margin: auto;
    max-width: 1000px;
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr 3px 1fr;
    font-family: "kollektif", sans-serif;
    color: var(--background-color);
}

.timelineComponent {
    margin: 0 20px 20px 20px;
}

.timelineComponent_bg {
    padding: 20px;
    background: var(--background-color);
    box-shadow: 2px 2px 5px rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

.timelineLine {
    position: relative;
    background: var(--text-color);
}

.timelinePoint {
    position: absolute;
    left: 1.3px;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: var(--text-color);
    border-radius: 50%;
}

.timelineDate,
.timelineDate_right {
    font-size: 0.8em;
}

.timelineTitle {
    margin: 0;
    font-size: 2em;
    text-align: left;
}

.timelineParagraph {
    font-size: 1.3em;
    font-weight: 400;
}

.projektFirstSteps,
.projektBasissemester {
    width: 100%;
    max-width: 500px;
    object-fit: cover;

}

.projektBasissemester {
    max-height: 325px;
}

.MeineArbeiten {
    display: flex;
    margin: auto;
    width: 100%;
    height: 150%;
    flex-wrap: wrap;
    gap: 15px;
}

iframe {
    display: block;
    margin: auto;
    width: 1080px;
    height: 900px;
    border: none;
}

[src="/Taschenrechner/index.html"] {
    width: 1920px;
    
}

@media (max-width: 768px) {

    timeline {
        zoom: 80%;
    }
}

@media (max-width: 475px) {

    timeline {
        zoom: 50%;
    }
}