/* Navigation Charakter */
.navi_center ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    margin-left: 1px;

}

.navi_center li {
    margin-right: 1px;

}

.navi_center a {
    display: block;
    width: 150px; /* Breite der Buttons */
    height: 50px; /* Höhe der Buttons */
    line-height: 30px; /* Zentriert den Text vertikal */
    text-align: center; /* Zentriert den Text horizontal */
    text-decoration: none;
    color: rgba(0, 0, 0, 1);
    background-size: contain;
    background-image: url(../images/styles/navi_button_charakter.bmp);
    background-repeat: no-repeat;
    transition: background-color 0.3s ease;
}

.navi_center a:hover {
    background-size: contain;
    background-image: url(../images/styles/navi_button_charakter.bmp);
    background-repeat: no-repeat;
    color: rgba(255, 255, 255, 1);
}