/*************** MENU SIMPLE FIXE ***************/
.inter_menu_simple{
    display: block;
    position: relative;
    margin: 70px auto;
    width: 600px;
    height: 200px;
    background-color: aqua;
}
.inter_menu_simple:hover{
    cursor: pointer;
}
.inter_menu_simple span{
    width: 100%;
    text-align: center;
    color: white;
    font-size: xxx-large;
    font-weight: 700;
    /* Vertical alignement */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Vertical alignement */
}

/*************** MENU SIMPLE DIFF ***************/
.menu_ressources a{
    background-repeat: no-repeat;
    background-size: cover;
    background-color: black;
    background-position: center;
    background-image: url("../../img/inter_menu/eclipse.jpg");
}




/*************** MENU DOUBLE FIXE ***************/
.inter_menu_double{
    margin: 70px auto;
    width: 600px;
    height: 400px;
    flex-direction: column;

    /* margin: 70px 0;
    width: 100%;
    height: 200px; */

    display: flex;
}
.inter_menu_double a{
    height: 100%;
    width: 100%;
}
.inter_menu_double a:hover{
    cursor: pointer;
}
.inter_menu_double div{
    position: relative;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: black;
}
.inter_menu_double span{
    width: 100%;
    text-align: center;
    color: white;
    font-size: xxx-large;
    font-weight: 700;
    /* Vertical alignement */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Vertical alignement */
}

/*************** MENU DOUBLE DIFF ***************/
.menu_satellite div a:nth-child(1) div{
    background-position-y: 99%;
    background-image: url("../../img/inter_menu/solar_orbiter2.jpeg");
}
.menu_satellite div a:nth-child(2) div{
    background-position: center;
    background-image: url("../../img/inter_menu/clea.jpeg");
}