/*Importation*/
@import url(home-css/main.css);
@import url(home-css/footer.css);
@import url(home-css/header.css);
@import url(contact.css);
@import url(cookie.css);
@import url(menu.css);
@import url(search.css);
@import url(wheather.css);
@import url(popup.css);
/*GENERALE*/
@font-face {
    font-family: "PoppinsBold";
    src: url("/font/poppins/Poppins-Bold.ttf");
}
@font-face {
    font-family: "PoppinsLight";
    src: url("/font/poppins/Poppins-Light.ttf");
}
/*Les elements gardes toujours la même dimensions (border + padding)*/
*{
    box-sizing: border-box;
}
/*Variables*/
:root {
    --main-blue: #0077BD;
    --modal-blue: #0078BDD7;
    --modal-menu-blue: #0078BDF8;
    --alert-yellow: #FFBA24;
    --cookie-blue: #009BFF;
    --ribbon-red: #D10000;
    --border-input-grey: #B6B3B2;
    --hover-input-contact-blue: #005E95;
    --separator-contact-grey: #CECECE;
}
body{
    margin: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
#big-bg {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media only screen and (max-width: 1195px) {
    .container-meteo{
        width: 275px;
    }
    .meteo{
        width: 260px;
    }
}
@media only screen and (max-width: 990px) {
    .container-meteo{
        display: none;
    }
}
/*FIN GENERALE*/