@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;500;600;700;800;900&display=swap');

.english_flag {
    width: 30px;
    height: 20px;
}

.langages {
    display: flex;
}

.langages a .button_en {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100px;
    height: 40px;
    font-size: 1rem;
    font-family: 'Montserrat', 'sans-serif';
    font-weight: 700;
    border-radius: 5px;
}

.langages a button {
    cursor: pointer;
}

.langages a .button_fr {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100px;
    height: 40px;
    font-size: 1rem;
    font-family: 'Montserrat', 'sans-serif';
    font-weight: 700;
    border-radius: 5px;
    background-color: #ffffff;
}

.langages {
    display: flex;
}

.langages_mobile a .button_en {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100px;
    height: 40px;
    font-size: 1rem;
    font-family: 'Montserrat', 'sans-serif';
    font-weight: 700;
    border-radius: 5px;
}

.langages_mobile a button {
    cursor: pointer;
}

.langages_mobile a .button_fr {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100px;
    height: 40px;
    font-size: 1rem;
    font-family: 'Montserrat', 'sans-serif';
    font-weight: 700;
    border-radius: 5px;
    background-color: #ffffff;
}

.active_langage {
    background-color: rgba(16, 182, 235);
    color: #181818;

}

@media screen and (min-width: 800px) {
    .langages_mobile {
        display: none;
    }
}