 @media only screen and (min-width: 680px)  {
 .Soldbuch-Flex {
    display: flex;
    gap: 0px;
    flex-direction: row;
    justify-content: center;
  }
  
  .Soldbuch-Links {
    display: flex;
    justify-content: end;
    width: 50%;
  }
  
  .Soldbuch-Rechts {
    display: flex;
    justify-content: start;
    width: 50%
  }
  }
  
  @media only screen and (max-width: 679px) {
  .Soldbuch-Flex {
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
  }
  
  .Soldbuch-Links {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .Soldbuch-Rechts {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  }