body {
    background-color: #175633;
    color: white;
    font-size: 20px;
}

header {
    padding: 20px;
    height: min-content;
}

main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "text bild";
    padding: 20px;
}

h1 {
    grid-area: h1;
}

p {
    line-height: 135%;
    font-family: "Times New Roman", Times, serif;
    margin-top: 30px;
    margin-bottom: 30px;
}

ol li {
    margin: 15px;
}

a {
    color: inherit;
}

figure {
    width: fit-content;
    height: fit-content;
    grid-area: bild;
    margin-left: auto;
    margin-right: auto;
}

img {
    border-style: solid;
    border-width: 4px;
    border-color: #fff;
    width: 33vw;
}

section {
    grid-area: text;
}

@media only screen and (max-width: 1000px),
print {
    main {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, min-content);
        grid-template-areas:
            "h1"
            "bild"
            "text";
        width: fit-content;
        margin: auto;
        font-size: 20px;
    }

    h1 {
        text-align: center;
        font-size: 30px;
    }

    p {
        text-align: center;
    }

    section>section {

        width: fit-content;
        margin: auto;
    }

    img {
        margin: auto;
        width: 50vw;
    }
}

@media only screen and (max-width: 700px) {
    img {
        margin: auto;
        width: 70vw;
    }
}

@media only screen and (max-width: 350px) {
    main {
        font-size: 17px;
    }

    ol {
        padding-inline-start: 20px;
    }
}

@media print {
    main {
        background-color: white;
        color: #000;
        font-size: 20px;
    }

    p {
        font-size: 20px;
    }

    a{
        text-decoration: none;
    }
}

@media only screen and (min-width: 2000px) {
    main {
        font-size: 42px;
    }

    img {
        width: 30vw;
    }

    h1 {
        text-align: center;
        font-size: 80px;
    }
}