
/*choix de police qui "écrase" celle de bootstrap*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap');
/*éviter height fixe, il vaut mieux qu'il s'adapte au contenu*/
/* header{
    min-height: 250px;
} */

/*utilitaire pour visualiser la position et l'encombrement des blocs
.bordure{
    border: solid 1px red;
}*/

body{
    max-width: 1200px;
    margin: auto;
    background-image: url("fond-carton.jpg");
}

main, header{
    font-size: 1.2em;
}

.nav-link {
    font-size: 17px;
    color:#48c2f1 !important;
}

.logo{
    width: 300px;
}

@media (max-width: 500px) {
    .logo{
        width: 150px;
    }
}

#ckweb{
    height: 40px;
}

.panorama{
    /*avec image*/
    background-image:url("../images/feuDeBoisLoick.jpg");
    background-position: bottom;
    background-size: cover;
    min-height: 400px;
}

@media (max-width: 500px) {
    .panorama {
    background-image:url("../images/feuDeBoisLoick.jpg");
    background-position: bottom;
    background-size: cover;
    min-height: 250px;
    }
} 

.bg-gris{
    background-color: #eeeeee;
}

.bg-bleu{
    background-color:#48c2f1 ;
}

.bg-rouge{
    background-color:#db2f1f ;
}

.text-bleu{
    color: #48c2f1;
}

.text-rouge{
    color: #db2f1f;
}

footer{
    min-height: 100px;
}

.lien{
    color:white !important;
}