body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f0f0f0;
}
header {
    background-color: #FFE600;
    color: black;
    padding: 1rem;
    width: 100%;
    text-align: center;
    position: fixed;
    top: 0;
    font-family: 'Times New Roman', Times, serif;
    font-weight: bold;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}
main {
    text-align: center;
    padding: 0rem;
    margin-top: 8rem; /* Adjust this value if needed to avoid content being hidden behind the header */
    flex: auto;
    width: 100%;
}
.ergebnisse-main {
    text-align: center;
    padding: 0rem;
    margin-top: 8rem; /* Adjust this value if needed to avoid content being hidden behind the header */
    flex: 1;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0rem; /* Add padding to main to ensure space around the boxes */
}
.index-main {
    text-align: center;
    padding: 0rem;
    margin-top: 8rem; /* Adjust this value if needed to avoid content being hidden behind the header */
    flex: 1;
    width: 100%;
    display: flex;
    flex-wrap: wrap; /* Allow the boxes to wrap to the next line if there's not enough space */
    justify-content: center;
    padding: 1rem; /* Add padding to main to ensure space around the boxes */
}
.section-box {
    background-color: #FFE600;
    border: 1px solid black;
    padding: 1rem;
    margin: 1rem;
    text-align: center;
    flex: 0 0 1; /* Flex-grow, flex-shrink, and flex-basis */
    box-sizing: content-box;
    border-radius: 10px; /* Rounded corners */
}
.box-container {
    display: flex;
    justify-content: center;
}
.box {
    background-color: #FFE600;
    /* border: 1px solid black; */
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
    display: inline-block;
    width: auto;
    border-radius: 10px; /* Rounded corners */
}
footer {
    background-color: #666666;
    color: white;
    padding: 0rem;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
}
.footer-links, .footer-rechts {
    flex: 1;
    min-width: 200px;
    margin: 0.5rem;
}
.footer-unten {
    margin-top: 1rem;
    text-align: center;
}

/* Specific style for impressum page */
.impressum-main {
    text-align: left;
    padding: 2rem;
    margin-top: 4rem; /* Adjust this value if needed to avoid content being hidden behind the header */
    box-sizing: border-box; /* Ensure padding is included in the element's total width */
}
