@font-face {
    font-family: "Rubik";
    src: url("../font/Rubik/static/Rubik-Light.ttf");
}

* {
    font-family: "Rubik", sans-serif;
}

.nav-link {
    color: black;
    font-size: 1.5em;
}

footer, header {
    background-color: #CFC4F4;
}

footer  {
    padding-top: 10px;
    overflow: hidden;
}

.contact-list {
    list-style: none;
    padding-left: 10px;
}

a {
    position: relative;
    color:black;
}

.banniere a:active {
    color: red;
}

.banniere {
    padding-bottom: 25px;
}

a:hover {
    color: #0056B3;
    text-decoration: none;
}

a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

a:hover::before {
    transform: scaleX(1);
}

.andykenny {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-top-style: double;
    border-top-color:black;
}

/* Animation */

.dropdown:hover>.dropdown-menu {
    display: block;
    overflow: visible;
}

.dropdown-menu {
    overflow: visible;
}

.dropdown>.dropdown-toggle:active {
    pointer-events: none;
    overflow: visible;
}

.logo {
    display: none;
}



@media screen and (max-width: 568px) {
    footer, .footer2 {
        text-align: center;
    }
    
    footer div div div div div {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .logo {
        display: none
    }
}


