﻿body {
    font-family: 'Titillium Web', sans-serif !important;
    /*font-family: 'Inter', sans-serif !important;*/
    -webkit-font-smoothing: antialiased;
}

.footerlinks {
    color: gray;
    text-decoration: none !important;
}

    .footerlinks:hover {
        color: darkslategray;
    }


.text-justify {
    text-align: justify !important;
    text-justify: inter-word;
}

a {
    text-decoration: none;
}

.btn-primary {
    background-color: cornflowerblue !important;
    color: white !important;
    border-color: whitesmoke !important;
}

.btn-outline-primary {
    border-color: cornflowerblue !important;
}

.bi {
    margin-right: 0.15rem;
}

i {
    color: cornflowerblue;
}

    i:hover {
        color: #364aad;
    }


@keyframes shrink {
    0% {
        background-size: 150% 150%;
    }

    100% {
        background-size: 100% 100%;
    }
}

/* Image mit zoom Effekt*/

.img-zoom-hover {
    transition: 1.0s;
}

    .img-zoom-hover:hover {
        transform: scale(1.1);
    }
