body{
font-family: "Nunito"; 
display:grid; 
grid-gap: 0.5em 0.5em; 
grid-template-rows: auto; 
grid-template-columns: auto repeat(5, 1fr); 
grid-template-areas: 
"logo header header header header header"
"logo nav nav nav nav nav "
"main main main main main main"
"main main main main main main"
"footer footer footer footer footer footer";
}

h1, h2, h3 {
	font-family: "Fredoka", "Nunito", sans-serif; 
	font-weight: 600; 
	margin: 0;
}
	
.logo{
	grid-area:logo; 
	background-color: #E0F7E9;  
	font-style:arial;
	place-self: center;
}
.header{
	grid-area: header; 
	background-color:#E0F7E9; 
	font-style:arial;
	display: flex; 
	justify-content: center; 
	align-items: center; 
}

.nav{
	grid-area:nav; 
	height:50px;
	background-color:#F8BBD0;
}
.main{
	grid-area: main; 
	background-color: #F5E5D3; 
	padding:2em; 
	font-style:arial;
	display: flex; 
	flex-wrap: wrap; 
	justify-content: space-around; 
	gap: 20px;
	padding-left: 140px;
	padding-right: 140px;
}

.arbeitsblatt{
	width: 45%; 
	border: 2px solid #F8BBD0;
	border-radius: 15px; 
	padding: 15px; 
	text-align: center; 
	margin-bottom: 20px;
}

.arbeitsblatt img {
	max-width: 100%; 
	height: auto; 
	border-radius: 10px;
}

.download-button  {
	display: inline-block; 
	margin-top: 15px; 
	padding: 10px 20px; 
	background-color:#F7D27C; 
	text-decoration: none; 
	font-family: "Fredoka", sans-serif;
	font-weight: bold; 
	border-radius: 10px; 
}

.aside {
	grid-area:aside; 
	background-color: #FFF4B8; 
	color:black;
	font-style:arial;
}
.footer{
	grid-area: footer; 
	background-color:#E0F7E9; 
	color:black; 
	padding: 25px 0;
    display: flex; 
    align-items: center;
    justify-content: flex-start;
    padding-left: 140px;
}

.footer-links {
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    padding-left: 140px;
	list-style: none; 
	gap: 40px; 
}

.footer-links a {
    color: #333; 
    text-decoration: none;
    font-weight: bold;
    font-family: "Fredoka", sans-serif;
    font-size: 16px;
    transition: color 0.2s; 
}

.copyright {
    margin: 0;
    font-size: 14px;
    color: #777;
	margin-right: 120px;
}

.button1{background-color: #F8BBD0;
	width:200px;
	height:50px;
	display:inline-block;
	text-align:center;
	line-height:50px;
	font-family:"Fredoka", sans-serif;
	font-weight:bold;
	font-size:17px;
	color:black;
	border-bottom-left-radius:18px;
	border-bottom-right-radius:18px;
	border-top-left-radius:18px;
	border-top-right-radius:18px;
	text-decoration:none;
}
.button2{background-color: #F8BBD0;
	width:250px;
	height:50px;
	display:inline-block;
	text-align:center;
	line-height:50px;
	font-family:"Fredoka", sans-serif;
	font-weight:bold;
	font-size:17px;
	color:black;
	border-bottom-left-radius:18px;
	border-bottom-right-radius:18px;
	border-top-left-radius:18px;
	border-top-right-radius:18px;
	text-decoration:none;
}

.dropdown{
	position: relative;
	display: inline-block;
	vertical-align: top; 
}

.dropdown-content{
	display: none; 
	position: absolute; 
	background-color: #F8BBD0; 
	min-width: 250px; 
	z-index: 1; 
	border-radius: 18px;
}

.dropdown-content a {
	color: black; 
	font-family: "Fredoka", sans-serif; 
	padding: 12px 16px; 
	text-decoration: none; 
	display: block; 
	text-align: left; 
	height: auto; 
	line-height: normal;
	border-radius: 18px;
}


