:root {
    --primary-color: #F4F3EF;
    --secondary-color: #104c91;
}

body,
html {
    font-family: 'Corbel', sans-serif !important;
    background-color: var(--primary-color) !important;
    height: 100%;
}

.container-wrapper {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 20px;
}

header {
    padding: 20px 0;
}


.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

header img {
    max-height: 100px;
    margin-right: 10px;
}

.carousel {
    margin: 0 auto;
}

.carousel-item {
    height: auto;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-inner>.item>img {
    width: 400px;
    height: 300px;
}

#carouselExampleIndicators {
    max-width: 40%;
    margin: 0 auto;
}

.intro {
    margin-top: 30px;
    margin-bottom: 30px;
}

.intro h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.intro p {
    display: block;
    margin: 0 auto;
}

.line {
    width: 90%;
}

.aktuelles h2 {
    color: var(--secondary-color);
}

.aktuell {
    display: flex;
}

.aktuell-text {
    width: 100%;
    margin-right: 5%;
}

.aktuell-img {
    border-radius: 5px;
    align-items: center;
    height: auto;
    max-height: 250px;
}

.contact-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact h2 {
    color: var(--secondary-color);
}

.contact-text {
    margin-right: 5%;
}

.contact-text a {
    color: black;
    text-decoration: underline;
}

.email a {
    color: black;
    text-decoration: underline;
}

footer {
    padding: 5px 0;
}

.footer-text {
    font-size: 12px !important;
}

.footer-links {
    text-decoration: none;
    color: inherit;
    font-size: 12px;
}

.footer-links:hover {
    text-decoration: none;
    color: inherit;
}

.carousel-item {
    position: relative;
    display: inline-block;
  }

  .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .carousel-item:hover .overlay {
    opacity: 1;
  }