html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #1c2736; /* Dunklerer Hintergrund für den Rand */
}

.container {
    width: 90%;
    max-width: 800px;
    background-color: #2c3e50; /* Hintergrundfarbe für den Inhaltsbereich */
    padding: 20px;
    box-sizing: border-box;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; /* Abstand zum Button */
}

p {
    color: #ecf0f1;
    margin-bottom: 20px;
    text-align: left;
}

p strong {
    display: block;
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 20px;
}

p.centered {
    text-align: center;
}

a {
    color: #3498db; /* Normale Farbe für Links */
    text-decoration: none;
}

.button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding: 20px 0;
}

.datenschutz-button {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid #1c2736;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.datenschutz-button:hover {
    background-color: #3498db;
}

.button-icon {
    width: 24px; /* oder die gewünschte Breite */
    height: 24px; /* oder die gewünschte Höhe */
    margin-right: 10px; /* Abstand zwischen Icon und Text */
    object-fit: contain; /* Behält das Seitenverhältnis bei */
}

@media (max-width: 600px) {
    .container {
        width: 95%;
        padding: 10px;
    }

    .datenschutz-button {
        padding: 8px 15px;
        font-size: 14px;
    }

    .button-icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
    }
}