body{
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
}



.navigation a{
    font-size: x-large;
    text-transform: uppercase;
    font-weight: 500;
    color: inherit;
}

.navigation a:hover{
    color:black;
}

.footer{
    background: linear-gradient(-10deg,#75996e,#378629);
    color: white;
    font-weight: 300;
}

.footer a:hover{
    color: black;
}

.footer h4{
    color: rgb(255, 255, 255);
}

.card{
    border:0;
}

.bi{
    margin: 0.35rem;
}



a
{
text-decoration: none;
color: inherit;
}

a:hover{
    transition: linear;
    color: gray;
}

.x-large{
    font-size: x-large;
}


/* Image mit zoom Effekt*/

.img-zoom {
    overflow:  hidden;
}

    .img-zoom img {
        transition: all 0.5s ease;
    }

    .img-zoom:hover img {
        transform: scale(1.02,1.02)
    }