/* General body styling */
body {
    margin: 0;
    padding: 0;
    background-color: #004400; /* Matt green background */
    color: #CCCC00; /* Matt yellow text */
    font-family: Arial, sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center; /* Center content horizontally */
}
/* Logo Styling */
#site-logo {
    width: 125px; /* Half the original size */
    height: auto;
    margin-bottom: 20px;
}

/* Header Styling */
header {
    padding: 20px;
    font-size: 2em;
    font-weight: bold;
}

/* Content Section */
.content-section {
    flex: 1;
    padding: 20px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

/* Links and Resources */
.content-section p, .content-section ul {
    margin-bottom: 20px;
}

.content-section a {
    color: #CCCC00; /* Matt yellow */
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
    background-color: #003300; /* Slightly darker green */
    padding: 10px;
    border-radius: 5px;
}

/* Form Styling */
form {
    margin: 20px 0;
}

input[type="text"] {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #CCCC00; /* Matt yellow border */
    border-radius: 5px;
    background: #003300; /* Slightly darker green background */
    color: #CCCC00; /* Matt yellow text */
    outline: none;
}

button {
    padding: 10px 20px;
    background-color: #CCCC00; /* Matt yellow */
    color: #004400; /* Matt green text */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

button:hover {
    background-color: #BBAA00; /* Slightly darker matt yellow */
}

/* Footer (Impressum) Styling */
footer {
    background-color: #003300; /* Slightly darker green */
    padding: 20px;
    font-size: 0.9em;
    color: #CCCC00; /* Matt yellow text */
    text-align: center;
}
