body {
	display: grid;
	gap: 0.5em;
}

	/* Breite beträgt mindestens 45em */
	
	body {
		grid-template-columns: 1fr 3fr 1fr;
		grid-template-rows: auto 1fr 100px;
                height: 100vh;
                background-color: whitesmoke;
	}


header,
nav,
main,
article,
section,
aside,
footer {
	border-radius: 0px 0.5em 0.5em;
	border: thin solid;
	padding: 10px;
}

header,
footer {
	grid-column: 1 / -1;
        border-radius: 20px;

}

header {
	background: aliceblue;
	border-color: #efeaea;
        border-radius: 20px;
        height: 10vh;
	padding-top: 20px;

}

nav {
	background: aliceblue;
	border-color: whitesmoke;
        height:30vh;
        border-radius: 20px;
}

main {

	border-color: whitesmoke;
}

aside {
	background: aliceblue;
	border-color: whitesmoke;
	height:30vh;
        border-radius: 20px;
       
}

footer {
	background: #e4ebf2;
	border-color: #8a9da8;
        border-radius: 20px;
        height: 3vh;
}

footer * {
	float: right;
	clear: right;
	margin: 0 0 1em;
}

body {
	margin: 0 auto;
	font-family: sans-serif;
}
#texte {
    width:100%;

}

#ich{
    padding-left: 10vh;
    text-align: top;
    font-family:cursive;
    font-size: 50px;
  }
  
  li {
      padding-top: 7px;
  }