#pageContentContainer {
    flex-grow: 1;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    /*pagecontent between sidebar an nav*/
    background-color: white;
}

#pageContentContainer .scrollContainer {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: auto;

}

#pageContentContainer .welcome {
    width: 100%;
    height: 100%;
    background-image: url("../img/neckermann_bioweine_landingpage_background_edit.jpg");
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pageContentContainer .welcome img {
    width: 100%;
    height: 100%;
    position: absolute;
}

#pageContentContainer .welcome .blurContainer {
    height: 100%;
    width: 100%;
     display: flex;
    justify-content: center;
    align-items: center;
}

.welcomeContainer {
    background-color: rgba(0, 0, 0, 0.5);
    width: 90%;
    display: flex;
    flex-direction: column;

}

.productsLinkContainer {
    background-color: var(--accentColor2);
    padding:2rem 0;
}

.welcome_text_container {
    padding:2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--accentColor2);
}

.welcome_text {
    color: var(--lightColor);
    font-size: 1.4rem;
}

.welcome_text_container .Logo {
    max-height: 100%;
    text-decoration: none;
    font-size: 2.4rem;
    text-align: right;
    line-height: 1.9rem;
}

.welcome_text_container .Logo>span {
    font-size: 1.9rem;
}

.productsLinkContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.productsLinkContainer p {
    color: var(--lightColor);
    font-size: 1.4rem;
    text-align: center;
    padding: 0 2rem;
}

.productsBtn {
    background: transparent;
    border: 2px solid var(--lightColor);
    color: var(--lightColor);
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    padding: 1rem 2rem;
    display: inline-block;
}

.productsBtn:hover {
    background: var(--lightColor);
    color: var(--accentColor2);
}