.willkommen {
    min-height: 100vh;
    background-color: #ACB0B1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.welc-content {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welc-div-text {
    /* width: 65%; */
    max-width: 1250px;
    box-sizing: border-box;
}

.welc-div-img {
    width: 35%;
    box-sizing: border-box;
    margin-left: 17.5px;
}

/* Bild Anpassungen */
.welc-div-img img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Text Anpassungen */
.welc-div-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 17.5px;
}

.welc-div-text h1 {
    color: #000;
    font-size: 25px;
    font-family: Roboto-Bold;
    margin-bottom: 25px;
}

.welc-div-text p {
    color: #000;
    font-size: 20px;
    font-family: Roboto-Light;
    text-align: justify;
}
 
@media screen and (max-width: 1300px) {
    .welc-content {
        margin-top: 25px;
    }
    
    .welc-div-text {
        width: 90%;
    }
}

/* Mobile Ansicht */
@media screen and (max-width: 800px) {
    .welc-content {
        margin-top: -15px;
        margin-bottom: 0px;
        flex-direction: column;
    }

    .welc-div-text {
        margin-top: 5px;
        width: 90%;
        margin-left: 0px;
        margin-right: 0px;
    }

    .welc-div-img {
        order: -1;
        width: 100%;
        margin-left: 0px !important; 
    }

    .welc-div-text h1 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .welc-div-text p {
        font-size: 17px;
    }
}
