/******************** BEFORE FOOTER ********************/
.before_footer{
    margin-top: 1400px;
    height: 400px;
    width: 100%;
    background-color: #07f58e;
    display: flex;
}
.before_footer > div{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.before_footer p{
    font-size: 3em;
    color: white;
}
.before_footer a{
    font-size: x-large;
    color: white;
}
.before_footer a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 60px;
    backdrop-filter: blur(10px);
    padding: 0 10px;
    border-radius: 100px;
    border: 2px solid #F3DD92;
    transition: border 0.5s;
}
.before_footer a:hover{
    border: 2px solid red;
}
.ressources{
    background-image: url("../../../static/img/espace/3d-hyperspace-background-with-warp-tunnel-effect.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: black;
}
.newsletter{
    background-image: url("../../../static/img/espace/vecteezy_barred-spiral-galaxy-spinning-in-space-flying-through_6666645.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: black;
}



footer{
    width: 100%;
    min-height: 200px;
    background-color: #1b98e6;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
footer > div{
    min-width: 20%;
}
footer a{
    color: white;
}
.footer_logo > div{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}



@media (max-width: 1200px){
    .before_footer{
        margin-top: 0px;
    }
}
@media (max-width: 650px){ /* Phablets, on change tout à partir d'ici, surtout le menu */
    .before_footer {
        height: 200px;
    }
    .before_footer p, .before_footer a {
        font-size: x-large;
        color: white;
    }
    .before_footer a{
        width: 60%;
    }
    footer{
        height: auto;
    }
}