.headline{
    font-size: 21px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    border-bottom: 3px solid black;
    width: max-content;
}
body {
    font-family: Arial, sans-serif;
  }
  
  .timeline {
    position: relative;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%; /* Breite der Timeline */
  }
  
  .timeline-point {
    position: relative;
    width: 16px;
    height: 16px;
    background-color: #F20519; /* Farbe der Punkte */
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: 2;
  }
  
  .timeline-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%; /* Strich in der Mitte */
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: grey; /* Farbe des Strichs */
    z-index: 1;
  }
  
  .timeline-content {
    width: 45%; /* Links und rechts Platz schaffen */
  }
  
  .timeline-content.left {
    text-align: right;
    padding-right: 20px;
  }
  
  .timeline-content.right {
    text-align: left;
    padding-left: 20px;
  }
  
  .timeline-content h3 {
    margin: 0 0 5px;
    font-size: 18px;
  }
  
  .timeline-content p {
    margin: 0;
    font-size: 14px;
  }
  .date {
    color:#F20519;
    font-size: 24px;
  }