.regelwerk_box {
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 70%;
    margin: 50px 0 0 15vw;
}

.regelwerk_center {
    align-items: center;
}

.regelwerk_titel {
    color: var(--saffron);
    font-family: var(--font-family-luminari-regular);
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    align-items: flex-start;
    margin: 10px;
}

.regelwerk_text {
    color: var(--white);
    font-family: var(--font-family-adobegaramond_pro-regular);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    margin: 0;
}

.desktop_pdf_container {
    display: flex;
    align-items: center;
    background-color: var(--black);
    flex-direction: column;
    overflow: hidden;
    width: 70%;
    margin: 50px 0 0 15vw;
}

.mobile_pdf_container {
    display: flex;
    align-items: center;
    background-color: var(--black);
    flex-direction: column;
    overflow: hidden;
    width: 90%;
    margin: 50px 0 0 5vw;
}

.download_button_box {
    cursor: pointer;
    justify-content: center;
    align-items: center;
    width: fit-content;
}

.download_button_box:hover {
    background-color: var(--saffron);
}

.download_button_box:hover > .download_button_label {
    color: black;
}

.download_button_label {
    font-family: var(--font-family-luminari-regular);
    color: var(--saffron);
    font-size: 20px;
    white-space: nowrap;
    margin: 20px;
}

.kreis_01 {
    display: flex;
    height: calc(10vw + 100px);
    width: calc(10vw + 100px);
    right: 0;
    position: absolute;
    top: 0;
    z-index: -1;
}

@media screen and (min-width: 1050px) {
    .regelwerk_titel {
        font-size: 40px;
    }
    .regelwerk_text {
        font-size: 20px;
    }
    .mobile_pdf_container {
        display: none;
    }
}

@media screen and (min-width: 50px) and (max-width: 1049px) {
    .regelwerk_titel {
        font-size: 17px;
    }
    .regelwerk_text {
        font-size: 15px;
    }
    .desktop_pdf_container {
        display: none;
    }
}
