/*
#00FFC0
*/

.blanc{
    background-color: #fffc;
    color:black;
    /* text-align: center; */
    padding: 5rem;
    text-shadow: 1px 1px black;
}
.blanc > div{
    margin-bottom: 2rem;
}

.parent_horizontal{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
.parent_vertical{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.justifier_au_debut{ justify-content: flex-start; }
.justifier_au_milieu{ justify-content: center; }
.justifier_a_la_fin{ justify-content: flex-end; }
.justifier{ justify-content: space-between; }
.justifier_avec_des_marges{ justify-content: space-around; }
.justifier_avec_des_demi_marges{ justify-content: space-evenly; }

.aligner_en_etirant{ align-items: stretch; }
.aligner_au_debut{ align-items: flex-start; }
.aligner_au_milieu{ align-items: center; }
.aligner_a_la_fin{ align-items: flex-end; }

.texte_au_milieu{
    text-align: center;
}

.enfant_gonfle{flex-grow: 1;}

.marge_interne_0{
    padding: 0;
}
.marge_interne_1{
    padding: 1rem;
}
.marge_externe_haut_0{
    margin-top: 0;
}

html,body{
    margin: 0;
    padding: 0;
}
body{
    min-height: 100vh;
    font-family: Montserrat, sans-serif;

    background-image: url('images/fond.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
summary{
    cursor:pointer;
    user-select: none;
}
h1,h2,h3,h4,h5,h6{
    font-family: Sixtyfour;
}
header{
    background-color: white;
    min-height: 5rem;
    border-bottom: solid 1px #00FFC0;

}

menu{
    background-color: white;
    display: block;
    min-width: 15rem;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
menu > li{
    display: block;
    /* height: 3rem; */
    margin: 0;
    padding: 1rem;
}
menu > li > a {
    text-decoration: none;
    border-bottom  : solid 1px transparent ;
    transition: .3s ;
}
menu > li:hover {
    /* border-bottom-color : currentcolor; */
    background-color: palevioletred;
}
main{
    /* padding: 1rem; */
}
footer{
    background-color: #111c;
    color:white;
    border-top: solid 1px #00FFC0;
}
footer a {
    color:white;
}
#footer_dons{
    min-height: 5rem;
    padding : 1rem;
    text-align: center;
}
#footer_navigation{
    background-color: green;
    min-height: 10rem;
    padding : 1rem;
    text-align: center;
}
#footer_copy{
    min-height: 3rem;
    padding : 1rem;
    text-align: center;
}

.parent_img_contain{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.parent_img_contain > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.parent_img_cover > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


#wrap_logo {
    /* background-color: pink; */
    /* width: 10rem; */
    height: 5rem;
    /* display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; */
}

/* #wrap_logo img {
width: 100%;
height: 100%;
object-fit: contain;
} */
#logo_devise{
    font-size: .8rem;
    padding-left: 1rem;
    padding-bottom: .3rem;
    color:#333;
    user-select: none;
    text-shadow: 0 1px #00FFC0 ;
}

#compte{
    padding: 1rem;
}
#compte > a{
    display: block;
    text-decoration: none;
    background-color: #00FFC0;
    color:black;
    line-height: 1rem;
    padding: 1rem 1.618rem;
    border-radius: 50rem;
}
#sous-titre{
    font-size: 2rem;
}


.carte{
    background-color: white;
    border : solid 1px black ;
    border-radius: .3rem ;
    max-width: 30rem;
    overflow: hidden; /*pour éviter de grapiller sur les border-radius */
    margin: 1.618rem;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.5) ;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) ;
}
.carte_header{
    /* background-color: lightcyan; */
    font-family: Sixtyfour ;
    padding: 1rem;
    position: relative;
    top: 0;
    left: 0;
}
.carte.beta .carte_header::after{
    content : 'PROTOTYPE' ;
    display: block;
    background-color: orange;
    color:black;
    border-radius: 50rem;
    border:solid 1px black ;
    position: absolute;
    top: 0.3rem;
    right: 0.3rem;
}
.carte_body{
    cursor:pointer;
    user-select: none;
    position: relative;
    top: 0;
    left: 0;
}
.carte_body::before{
    content : '' ;
    /* background-color: red; */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 1rem;
    left: 0;
    display: block;
    background-image: url('images/logo play.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 7rem;
    opacity: 0.5;
    transition: .3s;
}
.carte_body:hover::before{
    opacity: 1;
}
.carte_footer{
    /* background-color: lightgreen; */
    padding: 1rem;
}
.carte_footer::before{
    content : "Description : ";
    font-weight: bold;
}

/* #jumbotron_index{
    min-height: 50vh;
} */
#jumbotron_index_texte{
    background-color: #fff5;

}
#jumbotron_index_texte h1{
    font-size: 3rem;
}
