/* Grundlegende Formatierung */
body {
margin: 0;
font-family: Arial, sans-serif;
}

/* Header-Styles */
header {
background-color: #2196F3;
color: #fff;
padding: 5px;
}

h1 {
margin: 0;
text-align: center;
padding: 5px 0;
}

/* Main-Styles */
main {
padding: 5px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  max-width: 800px;
}

.link {
display: flex;
align-items: center;
margin-bottom: 20px;
text-decoration: none;
color: #333;
}

.link img {
width: 150px;
height: 150px;
margin-right: 20px;
background-color: black;
}

.text {
display: flex;
flex-direction: column;
}

.text h2 {
margin: 0;
font-size: 24px;
line-height: 1.2;
}

.text p {
margin: 0;
font-size: 14px;
line-height: 1.2;
}

/* Footer-Styles */
footer {
background-color: #e0e0e0;
color: #333;
padding: 1px 20px;
text-align: center;
margin-top: 20px; 
margin-bottom: 0; 
position: absolute; 
bottom: 0; 
left: 0; 
right: 0;
}

footer a {
color: #333;
text-decoration: none;
}

