html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    /* Hintergrundbild über die ganze Seite */
    background-image: url('/images/background.png'); /* Pfad anpassen */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    /* Textfarbe hell */
    color: #f0f0f0;
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%; /* schmaler machen */
    top: 50%; /* vertikal zentrieren */
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: 20%; /* näher zur Mitte */
}

.carousel-control-next {
    right: 25%; /* näher zur Mitte */
}

.carousel-item img {
    max-height: 600px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}
}

.footer-custom {
    width: 600px; /* feste Breite */
    margin: 0 auto; /* zentriert den Footer */
    text-align: left; /* Text mittig */
    margin-top: 300px; /* zusätzlicher Abstand nach oben */
}
