#dbaIndexContainer{
    position: relative;
    transform:translate(-50%, 0%);
    left: 50%;

    height: fit-content;
    min-height: 60vh;
    width: 100%;
    max-width: 800px;
}
#dbaIndexErgebnisContainer{
    display: none;
    position: absolute;
    bottom: 0px;
    text-align: left;
    width: 100%;
    height: calc(100% - 85px);
    font-size: 20px;
    border: none;
    overflow-y: auto;
    background-color: var(--hellFix);
    color: var(--dunkelFix);
}
#dbaIndexInput{
    position: absolute;
    width: 60%;
    height: 60px;
    border: solid 2px var(--dunkel);
}
#dbaIndexButton{
    position: absolute;

    height: 60px;
    width: calc(40% - 25px);

    right: 0px;

    background-color: var(--dunkel);
    color: var(--hell);
    border: none;
    cursor: pointer;

    font-family: "defaultFont", monospace;
    font-weight: bold;
    font-size: 32px;


    transition: 0.4s;

}
#dbaIndexButton:hover{
    color:var(--dunkelFix);
    background-color: var(--akzent);
    border: none;
}