.header {
    display: flex;
    align-items: center;
    position: relative;
    height: 169px; 
    background-color: #06815c
}

.logo {
    position: absolute;
    left: -206px;
    width: 150px;
    height: 150px;
}

.header h1 {
    margin: 0 auto; 
    font-family: cursive;
    font-size: 59px;
    text-align: center;
    color: aliceblue
}
.planten {
    display: flex;
    flex-direction: row;
    gap: 1em;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.planten article {
    width: 25%;
    flex-basis: 200px;
}
body {
    max-width: 633px;
    margin: 0 auto;
    font-family: serif;
    font-size: 14px;
    background-color: #beffd5
}
h3 {
    color: #005000;
}
p {
    font-family: cursive;
}


