/*Schriftart: Ysabeau Infant*/
body {
    font-family: 'Ysabeau Infant', serif;
}
footer {
    font-family: 'Ysabeau Infant', serif;
}

/*Slider Anpassung*/
.owl-carousel {
    width: 100%;
}
@media (max-width: 768px) {
    .slider-box {
        padding-top: 65px;
    }
}
.owl-carousel .item img {
    padding: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.owl-item.active img {
    animation: zoom 5s forwards;
}
/*Slider Zoom*/
@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/*Navbar Anpassung*/
.navbar-nav .nav-link {
    color: white !important;
    font-weight: bold !important;
}
.navbar-nav .nav-item.active .nav-link {
    color: yellow !important;
}

.navbar-nav .nav-link:hover {
    color: yellow !important;
}

/*Datenschutz Anpassung*/
.datenschutz-container a{
    font-weight: bold;
    color: black;
    text-decoration: none;
}
.datenschutz-container a:hover{
    color: dimgray;
}
.datenschutz-container{
    text-align: center;
}

.footer {
    background-color: #4FA23B;
    color: white;
    font-weight: bold;

}
.footer a {
    color: white;
    text-decoration: none;
}
.footer a:hover {
    color: yellow;
}



