
*, :after{
    box-sizing: border-box;
}

body{
    margin: 50px 2rem 2rem 2rem;
    background-color: rgb(230, 0, 107);
    font-family: 'Dosis', sans-serif;
    font-size: 1.1rem;
    text-align: left;
    color: white;
}

header{
    height: 7rem; 
}

a{
    text-decoration: none;
    color: white;
}

p{
    margin: 0 0 2rem 0;
}

.text{
    padding: 0;
}

.portrait{
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2rem;
}

.portrait img{
    width: 100%;
}

.bild{
    width: 100%;
    height: 14rem;
    background-image: url("img/lesidees_stopper2020.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.bild img{
    width: 100%;
}

.adresse p{
    margin-top: 3rem;
}

@media screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait){
    body{
        margin: 50px 6rem 6rem 6rem;
    }
    header{
        height: 10rem; 
    }
    header img{
        max-height: 100px;
    }
    .bild{
        height: 24rem;
    }
    
}


@media only screen and (min-width: 700px) and (orientation: landscape){
    body{
        margin: 50px 3rem 3rem 3rem;
    }
    header{
        height: 9rem; 
    }
    header img{
        max-height: 100px;
    }
    .content{
        display: flex;
        flex-direction: row-reverse;
    }
 
    .bild{
        width: 50%;
        height: 30rem;
        background-image: url("img/lesidees_stopper2020.jpg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

    .text{
        height: 30rem;
        width: 50%;
        padding: 0 3rem;
        overflow: hidden;
    }
    .portrait{
        width: 60%;
        padding: 0;
    }



    
}