@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body{
    font-family: Montserrat;
}

html,
body{
    background: linear-gradient(0deg, #DDD 0%, #EEE 20%,#FFF 60%);
}

.impressum{
    background-color: #FFF;
}

:root {
    --footerBGColor: #EEE;
    --footerColor: #555;
    --backgroundColor: #FFF;
}


header{
    box-shadow: 0 -4px 20px #00000055;
}
footer{
    border-top: solid 1px #555;
}
.container-Image-Text-50,
.umzug-container{
    background-color: #FFF;
}

/*-----MOBILE ANSICHT-----*/
/*-----UMZUG-----*/
.umzug-text{
    text-align: center;
    width: 75%;
}
.umzug-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.umzug-container .umzugs-bild{
    width: 100%;
    text-align: center;
    pointer-events: none;
}

.umzug-container a{
    text-decoration: none;
    color: #000;
    font-weight: bold;


}
.button-container{
    display: inline-block;
}
.kiewitz-button{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    background-color: white;
    box-shadow: 0px 4px 10px #00000055;
    padding: 10px;
    border-radius: 25px;
    
}
.kiewitz-button img{
    width: 50px;
    height: auto;
    padding-right: 10px;
}
.kiewitz-button p{
    text-align: center;
    padding-right: 5px;
}

.lul-unterschrift{
    width: 300px;
}

.contact{
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content:space-evenly;    
    border-top: solid 1px #555;
    border-bottom: solid 1px #555;
}

/*Desktop Code Start*/
@media (min-width: 1000px){
    /*-----UMZUG-----*/
    .umzug-text{
    max-width: 500px;
    }

    .umzug-container{
        display: block;
    }
    
    .umzug-container .umzugs-bild{
        margin-top: -100px;
        width: calc(100% + var(--paddingX)* 0.5);
        margin-left: calc(var(--paddingX)* -1);
        justify-self: center;
        align-self: center;
        pointer-events: none;
        margin-bottom: calc(var(--paddingX)* -1.2);
    }
    .lul-unterschrift{
        width: 80%;
    }

    .contact{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content:space-evenly;
    }

    .container-Image-Text-50>img {
        height: auto;
        text-align: center;
        align-items: center;
        align-self: center;
        order: -1;
        width: 300px;
    }
}