html, body {
height: 100%;
padding: 0;
margin: 0;
}



body {
    font-family: 'Segoe UI', Helvetica , sans-serif;
    display: block;
    justify-content: center;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

.break-word{
    word-wrap: break-word;
}
#full-website {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    /* Margin around the navbar container */
}



.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */

    padding: 5px 0;
    /* Padding inside the navbar container */
    border-radius: 8px;
    /* Rounded corners */
    overflow-x: auto;
    white-space: nowrap;
    text-align: center;
    scrollbar-width: thin;
    background-color: #f5f5f5;
    z-index: 2;
    margin-top: 20px;
    margin-bottom: 20px;
    top: 0;
    position: sticky;
    flex-shrink: 0;
    border: 1px solid #ccc;

}


.navbar a {
    margin: 0 10px;
    color: #333;
    /* Dark text color */
    text-align: center;
    text-decoration: none;
    padding: 10px 15px;
    /* Padding for links */
    transition: background-color 0.3s ease;
    display: inline-block;
    width: 10%;
    min-width: fit-content;
    /* Ensures clickable area matches text */
}

.navbar a:hover,
.navbar a.active {
    background-color: #4CAF50;
    /* Active link color */
    color: white;
    /* Change text color on hover */
    border-radius: 4px;
    /* Rounded corners for hover effect */
}

.image-container {
    display: flex;
    justify-content:space-evenly; /* Ensures equal spacing */
    margin-top: 25px;
    overflow-x: auto;
}

.image-container img {
    max-height: 15vh;
}

/* Hide scrollbar on WebKit browsers (Chrome, Safari) */
.navbar::-webkit-scrollbar {
    display: none;
}

.footer {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    margin-bottom: 0;
    padding: 5px 0;
    /* Padding inside the navbar container */
    border-radius: 8px;
    /* Rounded corners */
    bottom: 0;
    background-color: #f5f5f5;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    max-height: 100px;
    height: 10vh;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
    flex-shrink: 0;
    position: sticky;
    border: 1px solid #ccc;


}

.footer a {
    color: #333;
    text-decoration: none;
    text-align: center;
    margin-left: 40px;
    margin-right: 40px;
    height: 50%;

}

.footer img {
    height:100%;
    width: auto;
    object-fit: contain;
}
.footer .impressum {
    height: auto;
}
.content {
    padding: 0 20px;
    flex: 1;
    margin-bottom: 20px;

}
.footer-links {

    display: flex;
    flex-direction: column;
    align-items: center;
}

#impressum {
    margin-bottom: 2px;
}
#privacy {
    margin-top: 3px;
}

.green-link {
    color: #4CAF50;
}

.justify-text-align {
    text-align: justify;
}
