* {
    margin: 0;
}

html, body    {
    font-family: arial, sans-serif;
}

header {
    background-color: lightblue;
	background-image: linear-gradient(to right, blue, white);
/*     background-image: url(bilder/weissdorn-h.jpg); */
    height: 60px;

}

header p {
    color: green;
	font-weight: bold;
    font-size: 1.7em;
    padding: 10px 10px 0 100px;
    text-align: right;
}

nav {
    background-color: #ceb98e;
}

nav ul {
    padding: 0;
}

nav li {
    /* background-color: orange; */
    list-style-type: none;
    display: inline-block;
    height: 1.5em;
    padding: 0 1em;
    line-height: 1.5em;
    border-right: black 1px solid;
}

nav a {
    color: black;
    text-decoration: none; 
}

nav a:hover {
    text-decoration: underline;
}

.keinrahmen {
    border-right: 0;
}

.schatten {
    background-image: url(bilder/schatten.png);
    height: 12px;
}

article {
    margin: 20px 40px;
/*	background-color: orange;*/
}

article h1 {
    margin-bottom: 0.4em;
}

article p,
article ul
{
    margin-bottom: 1em;
    line-height: 1.5em;
}

footer {
    background-color: #ceb98e;
	text-align: center;
    height: 1.5em;
    padding: 0 1em;
    line-height: 1.8em;
}

img {
    max-width: 100%;
    height: auto;
}




