*{

    font-family: "Cutive Mono", monospace;
}
a{
    color: black;
    text-decoration: none;
}
.categorie
{

    cursor:pointer;
    position: relative;
}
.categorie_titre
{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    font-size: 3rem;
}
.categorie_titre a{
    color:#000000;
    text-decoration: none;
}

.menu
{
    color:#000000;
    text-decoration: none;
}
.categorie:hover
{

}
.categorie:hover .categorie_image
{
    opacity: .2;
    transform: scale(0.8);


}

.categorie:hover .categorie_titre
{
    opacity: 1;
}
.categorie_image
{

    transition:0.5s all ease;
    transform: scale(0.9);
    align-items: center;
    display: flex;
    height: 100%;
}

.categorie_titre
{
    position: absolute;
    width: 100%;
    height: 100%;
    vertical-align: center;
    opacity: 0;
    transition:0.5s all ease;
    z-index: 100;

}
.menu_fil
{
    padding-right: 15px;
    font-size: 2rem;
    cursor: pointer;

}
.element{
    transition: all ease 0.5s;
}
.element.afficher
{
    position: fixed;
    top: 0%;
    left: 0px;
    width: 100%;
    height: 100% !important;
    background-color: rgba(255,255,255,0.9);
    z-index: 100;
    box-sizing: border-box;
}
.element{
    width: 100%;
    box-sizing: border-box;
    position: relative;
    margin: 15px 0;
}

.element .element_image
{
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.element.afficher .element_image
{
    width: 50%;
    height: 100%;
    position: fixed;
    left: 0px;
}
.element.afficher .element_titre
{
    width: 50%;
    height: 100%;
    position: fixed;
    right: 0px;
}
.element.afficher:hover .element_image
{
    transform: scale(0.9) !important;
    opacity: 1!important;
}

footer
{
    position: sticky;
    bottom: 0px;
    background-color: #ffffff;
    z-index: 50;
    margin-top: 20px;
}