html {
    box-sizing: border-box;

    --hp-background: #ffffff;

    --primary: #55793e;
    --primary-variant: #53953b;
    --primary-inverse: #ffffff;

    --wood-border: #cd8e36;
    --green-box-border: #413627;
    --green-box-background: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
}

*, *:before, *:after {
    box-sizing: inherit;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--hp-background);
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:visited {
    color: var(--primary);
}

a:hover {
    text-decoration: underline;
}

body {
    font-size: 100%;
    background-attachment: fixed;
    background-image: url('../img/layout/bg-white.png');
    background-position: 0px 0px;
    background-repeat: repeat;
    background-size: 250px;
}

div {
    display: flow-root;
}

.center-container {
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
}

.header {
    display: flex;
    flex-wrap: wrap;
}

.header .logo-container {
    display: flex;
    flex: 1 1 15rem;
    justify-content: center;
    text-align: center;
}

.header img {
    max-width: 80%;
}

.header .contact {
    flex: 15rem;
}

.header .contact .contact-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.header .contact .contact-line img {
    width: 40px;
    height: 40px;
}

.primary {
    padding-bottom: 2rem;
}

.primary h1 {
    color: var(--primary);
}

.inverse {
    padding-bottom: 2rem;
    background-color: var(--primary-variant);
    background-attachment: fixed;
    background-image: url('../img/layout/bg-primary.png');
    background-position: 0px 0px;
    background-repeat: repeat;
    background-size: 250px;
}

.inverse h1 {
    color: var(--primary-inverse);
}

.inverse .imprint-line, .inverse .imprint-line a {
    color: var(--primary-inverse);
    text-align: center;
}

.section {
    position: relative;
    padding-left: 2vh;
    padding-right: 2vh;
    padding-bottom: 1rem;
}

.section .ornament {
    position: absolute;
}

.section .content {
    display: flex;
    align-content: flex-start;
}

.section .image-container {
    flex: 1;
    width: 50%;
}

.section img {
    width: 100%;
}

.section .text-content {
    flex: 2;
    margin-top: 0;
    padding-left: 1rem;
}

.section .pictures-content img {
    padding-bottom: 1rem;
}

.wood {
    background-image: url('../img/layout/wood-background.png');
    background-size: 100% auto;
    border-top: 0.1rem solid var(--wood-border);
    border-bottom: 0.1rem solid var(--wood-border);
}

.wood .screw1 {
    right: 6%;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background-image: url('../img/layout/screw1.png');
    background-size: contain;
}

.wood .screw2 {
    left: 6%;
    bottom: -0.3rem;
    width: 2rem;
    height: 1rem;
    background-image: url('../img/layout/screw2.png');
    background-size: contain;
}

.green-box {
    border: 1px solid var(--green-box-border);
    background-color: var(--green-box-background);
}

.green-box .plants1 {
    left: -0.8rem;
    top: -0.1rem;
    width: 2rem;
    height: 4.3rem;
    background-image: url('../img/layout/plants1.png');
    background-size: contain;
}

.green-box .plants2 {
    right: 6%;
    bottom: -0.1rem;
    width: 4.3rem;
    height: 4.1rem;
    background-image: url('../img/layout/plants2.png');
    background-size: contain;
}