body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #dbe5f1; /* Set a light blue background color */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    background-color: #dbe5f1;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.news-header {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    color: black;
}
.news-header h1 {
    margin: 0;
}
.news-item {
    background: #fff;
    margin: 20px 0;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.news-item h2 {
    margin-top: 0;
}
.news-item p {
    line-height: 1.6;
}
.news-image {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
}

.news-image img {
    width: auto; /* Reduziere die Breite */
    height: auto; /* Behalte das Seitenverhältnis bei */
    margin-bottom: 20px;
}