/* Global Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Header Styles */

header {
    background-color: #D31F2A; /* Rot */
    color: #ffffff;
    padding: 1em;
    text-align: center;
}

header .logo {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    background-size: cover;
    background-position: left;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

header nav ul li {
    margin-right: 20px;
}

header nav a {
    color: #ffffff;
    text-decoration: none;
}

/* Main Styles */

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2em;
}

section {
    background-color: #ffffff;
    padding: 1em;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

/* Newsbox Styles */

.news-box {
    background-color: #ffffff;
    padding: 1em;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-box h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.news-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-box li {
    margin-bottom: 20px;
}

.news-box h3 {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.news-box p {
    font-size: 1em;
    margin-bottom: 10px;
}

/* Footer Styles */

footer {
    background-color: #D31F2A; /* Rot */
    color: #ffffff;
    padding: 1em;
    text-align: center;
    clear: both;
}