body {
    font-family: Arial, sans-serif;
    background-color: #1a2634; /* Darker background for the sides */
    color: #ecf0f1;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#ident {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    background-color: #2c3e50; /* Original background color for the main content */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

h1, h2, h3 {
    text-align: center;
    color: #ecf0f1;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
}

h2 {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
}

p, ul {
    line-height: 1.6;
    margin-bottom: 15px;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    color: #2980b9;
}

ul {
    padding-left: 20px;
}

.button-container {
    width: 100%;
    display: flex;
    justify-content: left;
    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) {
    #ident {
        width: 95%;
        padding: 10px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.7em;
    }

    h3 {
        font-size: 1.3em;
    }
}