.lists {
            width: 100%;
            display: flex;
            gap: 20px;
            justify-content: space-between;
            /* align-items: flex-start; Wenn du willst, dass das Menü in der Länge nicht mit dem Content-Block mitwächst. Ich empfehle dir, *hier dann das padding einzufügen, damit es nicht mit dem letzten Strich endet. */
        }
        
        /*         Menu        */
        
.lists_menu {
    width: 55%;
    display: flex;
    gap: 10px;
    background: #161616;
    flex-wrap: wrap;
}
        
.lists_menu-head {
    height: 50px;
    width: 100%;
    background: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    /* font-weight: bold; */
    text-transform: uppercase;
    font-family: 'kenyan_coffeeregular';
    padding: 9px;
    font-size: 40px;
    letter-spacing: 3px;
    border-bottom: 1px #101010 solid;
}
        
.lists_menu-item {
    height: 25px;
    width: 47%;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    box-sizing: border-box;
    border-bottom: 1px solid #4c4d1647;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    background: #121212;
    justify-content: center;
}
        
        
        /*         Content       */
        
        
.lists_content {
    width: 80%;
    box-sizing: border-box;
    background: #111111;
}
        
        .lists_content-head {
            height: 50px;
            width: 100%;
            background: #b8b8b8;
            font-size: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: bold;
            text-transform: uppercase;
        }
        
.lists_content-description {
    padding: 20px 40px;
    text-align: justify;
    line-height: 180%;
    background: #111111;
}
        
        .lists_content-bit {    
            padding: 0 40px 40px 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        
.lists_content-block {
    width: 45%;
    text-align: center;
}
        
.lists_content-item {
    margin-bottom: 5px;
    text-align: justify;
    height: 150px;
    overflow: auto;
    padding: 0px 7px 0px 0px;
    margin-top: -13px;
}

.theadgb {
    background: #121212;
    color: #9f9f9f;
    border-bottom: 1px solid #1a1a1a;
    padding: 10px;
    width: 96%;
    margin: auto;
    text-align: center;
    font-size: 15px;
}
		
		