@media (min-width: 481px) {
    #display {
        display: flex;
        flex-direction: column;
        margin-left: -4%;
        margin-right: 2%;
    }

    section {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }
    
    section div {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }
    
    section div article {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 800px;
    }

    section div article h1 {
        font-size: 4rem;
    }

    section div article h2 {
        font-size: 2.5rem;
    }

    section div article p {
        font-size: 2.3rem;
        padding-left: 14%;
    }

    #textUntereinander {
        display: flex;
        flex-direction: column;
    }
    
    @media (max-width: 1774px) {
        section #text article p {
            font-size: larger;
        }
    }
    
    @media (max-width: 1220px){
        section div {
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
        }
    }
}

img {
    width: 50vw;
}

::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

body {
    padding-top: 2vh;
    background-color: rgb(180, 130, 80);
    width: 100%;
    margin: 0vw;
}