/* Allgemeine Stile */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    background-color: black;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header {
    padding: 2rem;
    text-align: center;
}

.logo-container img {
    width: 450px;
    margin-bottom: 20px;
}

main {
    display: flex;
    justify-content: center;
}

.info {
    text-align: left;
    max-width: 600px;
}

h2, p, ul li {
    color: white;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
    display: flex;
    align-items: center;
}

ul li i {
    color: #1fabbf; /* Icon-Farbe */
    margin-right: 10px; /* Abstand zwischen Icon und Text */
}
.logo-container {
    padding-top: 10%;
}
a {
    color: #fff;
    text-decoration: none;
}
a:hover {
    color: #1fabbf;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer-Stile */
footer {
    background-color: #000;
    color: white;
    text-align: center;
    font-size: x-small;
    padding: 10px;
    width: 100%;
}

footer p, .legal p {
    margin: 0;
}

/* Responsive Stile */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .logo-container img {
        width: 250px;
    }

    .info {
        max-width: 100%;
    }
}
