/* CSS für das Impressum */

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 60px;
	
}

h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

p {
    margin-bottom: 10px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

.link{
	color: #007bff; /* Ändern Sie die Farbe der Links */
    text-decoration: none;
}

.button-back {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #333;
    background-color: #ffc107;
    padding: 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button-back:hover {
    background-color: #ff9800;
}

