/* Allgemeine Stile */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    text-align: center;
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* Halbtransparenter Hintergrund */
}

/* Logo */
.logo {
    /* width: 600px; /* Größe des Logos anpassen */
    margin-bottom: 20px;
}

/* Nachricht */
h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

p {
    font-size: 1.2em;
}

/* Social Media Buttons */
.social-links {
    margin-top: 20px;
}

.social-btn {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    background-color: #007bff; /* Blau für Buttons */
    border-radius: 5px;
}

.social-btn:hover {
    background-color: #0056b3; /* Dunkleres Blau beim Hover */
}

.footer {
    margin-top: 20px;
}