/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header-Stile */
header {
    background: #292E3B;
    color: white;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    margin: 0;
}

/* Navigationsleiste */
nav ul {
    list-style: none;
    background: #333;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    text-decoration: none;
    color: white;
    padding: 1rem;
    display: block;
}

nav ul li a:hover {
    background: #575757;
}

/* Hauptbereich */
main {
    padding: 1rem;
    background: white;
    margin: 1rem auto;
    max-width: 800px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.columns {
	text-align: center;
}

/* Logo-Container */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.logo {
    width: 600px;
    height: 300px;
}

/* Kontaktinformationen */
.contact-info {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a {
    color: #0073e6;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Abschnitte */
section {
    margin-bottom: 2rem;
}

section h2 {
    color: #292E3B;
	font-family: Arial, sans-serif;
	font-size: 18px;
	text-align: center;
		
}

/* Footer */
footer {
    background: #292E3B;
    color: white;
    text-align: center;
    padding: 1rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* MEDIA QUERYS */
@media(max-width: 1200px){
	.logo {
    width: 400px;
    height: 200px;
}
	
}
