/* La partie alerte corona qui n'est que dans l'index */
header .alerte-corona,
header .alerte-corona a{
    font-family: "VictorMono" !important;
    font-size: 1rem;
    font-weight: bold;
}

.corona .close span{
    font-family: "VictorMono";
    font-size: 30px;
}




.gameCard{
    width: 80%;
    display: block;
    margin: 2rem auto;
    background-color:#F0FAFB;
    border-radius: 10px;
    box-shadow: 8px 8px 12px rgba(0,139,139, .5);
    margin-bottom: 4rem;
}
.card-img-top{
    width: 250px;
    height: 250px;
    display: block;
    margin: 1rem auto;
    box-shadow: 8px 8px 12px rgba(0,139,139, .5);
    transform: rotate(10deg);
    border-radius: 10px;
}
.card-body{
    text-align: center;
}
.gameCard img{
    transform: rotate(10deg);
    transition: all 300ms;
}
.gameCard:hover img{
    transform: rotate(0deg);
}
.card-text{
    font-size: 1.5rem;
    text-align: start;
    margin-bottom: 2rem;
    justify-content: center;
    display: flex;
}

.btn {
    color: #fff;
    font-size: 1.5rem;
    background-color:#1994AD ;
    border-radius: 20px 38px 40px 50px;
    padding: 10px 15px;
    border: 1px solid #1994AD;
    cursor: pointer;
    box-shadow:0 0 7px 0 rgba(0,0,0,0.7);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.btn:hover{
    color:#000;
    background-color:#fff;
}
.btn:active{
    box-shadow:0 0 3px 0 rgba(0,0,0,1);
}




/* CAROUSEL */

.carousel-indicators{
    bottom: -20px;
}
.carousel-indicators li{
    background-color:#1994AD;
    width: 20px;
    height: 20px;
    border-radius: 10px;
}


/* COUP DE COEUR */

main .images{
    margin-top: 5rem;
}
.BgcCoupDeCoeur{
    text-align: center;
    background-image: url(../img/images/coeur.svg);
    background-size: 5rem;
    background-repeat: no-repeat;
    background-position: center;
}
.card-body{
    text-align: center;
}



/* ----------  Desktop ------- */
@media screen and (min-width: 720px){

    /* la partie alerte corona */
    header .alerte-corona,
    header .alerte-corona a{
        font-family: "VictorMono" !important;
        font-size: 2rem;
        font-weight: bold;
}

    


    .gameCard{
        display: flex;
    }
    .card-body a{
        margin-top: 50px;
    }
    .card-text{
        margin: 2rem;
        padding: 1rem;
    }
    .btn{
        margin-right: 25rem;
    }
    h2{
        margin-right: 25rem;
    }
    .images{
        margin-top: 15rem;
    }
}    

