:root{
    --primary: #707070;
    --secondary: #d41414;
}


.cover {
    position: absolute;
}

.printContent {
    margin: auto;
    margin-top: 10vh;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 90%;
}

.contentBox {
    width: 100%;
    margin-top: 4vh;
    margin-bottom: 5vh;
}

.pageHeading {
    grid-column: 1/4;
    text-align: center;
    font-size: 3rem;
}

.spaceDivider {
  margin-bottom: 2rem;
}

.printContainer {
    width: 99%;
    margin: auto;
}

.inhalt {
    width: 100%;
    min-height: 200px;
}

.inhalt h1 {
    text-align: center;
    margin-bottom: 2rem;
}

.infoText p {
    text-align: center;
}

.infoText {
    width: 60%;
    margin: auto;
    margin-bottom: 4rem;
}

.imgContainer {
    width: 100%;
    overflow: hidden;
}

.leaf, .vari {
    max-width: 100%;
    display: grid;
    gap: 2rem;
    padding: 0.8rem;
}

.hor, .por {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 2px 2px 10px var(--primary);
    margin-bottom: 1.5rem;
}






@media screen and (max-width: 31.25rem) {

    .infoText {
        width: 80%;
    }

    
    .vari .por {
        width: 57%;
        justify-self: center;
    }
}




@media screen and (min-width: 31.25rem) and (max-width: 56.25rem) {


    .vari .por {
        width: 57%;
        justify-self: center;
    }
}


@media screen and (min-width: 56.25rem) {

    .leaf {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }

    .vari {
        grid-template-columns: repeat(4, 1fr);
    }

    .vari .ho1, .vari .ho3 {
        grid-column: 1/3;
    }

    .vari .ho2, .vari .ho4 {
        grid-column: 3/5;
    }
}