/* Allgemeine Einstellungen */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-image: linear-gradient(120deg, #3498db, #8e44ad);
    padding: 15px;
    text-align: center;
    color: white;
}

.header-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-text {
    text-align: left;
}

.logo {
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
}

/* Styling für das Login-Icon */
.login-icon {
    position: absolute;
    top: 20px;
    right: 20px;
}

.login-icon a {
    color: white;
    font-size: 1.5em;
    text-decoration: none;
}

.login-icon a:hover {
    color: #ddd; /* Hover-Effekt für das Icon */
}

footer {
    position: relative;
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

footer p {
    margin: 0;
}

.footer-link {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.footer-link:hover {
    color: #ddd; /* Hover-Farbe für den Link */
}

/* Links und Hover */
a:hover {
    text-decoration: underline;
}

/* Animations-Effekt */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.fadeIn {
    animation: fadeIn 1s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
}