body {
    background-color: black;
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
    padding: 0;
}

hr {
	margin-bottom: 20px;
	max-width: 400px;
}


.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0px 20px 0px 20px;
}

.text-section {
    text-align: center;
    margin: 20px 0;
}

.image-container {
    text-align: center;	
}

/* Responsive Logo */
.responsive-logo {
    max-width: 100%;
    height: auto;
    width: auto; /* Erlaubt dem Logo, kleiner als seine natürliche Größe zu werden */
    max-height: 80vh; /* Begrenzt die Höhe auf 80% der Viewport-Höhe */
    object-fit: contain; /* Behält das Seitenverhältnis bei */
}

/* Social Media Liste */
.social-media-section {
    text-align: center;
    margin: 30px 0;
}

.social-media-list {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0;
    list-style-type: none;
}

.social-media-list li {
    margin: 0 10px;
}

.social-media-list a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid white;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.email-link {
    user-select: all; /* Erlaubt einfaches Markieren der E-Mail-Adresse */
}

.social-media-list a:hover {
    background-color: white;
    color: black;
}