* {
    margin: 0;
    font-family: "Oxygen", sans-serif;
}

@media screen and (max-width: 972px) {
    #global #global2 {
        width: 80%;
        padding-bottom: 10rem;
    }
}

@media screen and (min-width: 972px) {
    #global #global2 {
        width: 80%;
        height: 100vh;
    }
}

#global {
    color: white;
    background-color: #1F2937;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#global #global2 #titre{
    font-size: 3rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
    text-align: center;
}

#global #global2 .bleuIce {
    color: rgb(0, 225, 255);
}

#global #global2 .lesPakersCartes{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

#global #global2 .lesPakersCartes .divPaker{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 5px 5px 15px rgba(0, 0 , 0, 0.3);
}

#global #global2 .lesPakersCartes .divPaker #pakerEquilibree, #pakerDifficile{
    background-image: url('../img/img_equilibree.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 20rem;
    height: 20rem;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 300ms;
    margin-bottom: 1rem;
}

#global #global2 .lesPakersCartes .divPaker #pakerEquilibree:hover, #pakerDifficile:hover{
    width: 20.5rem;
    height: 20.5rem;
}


#global #global2 .lesPakersCartes .divPaker #pakerEquilibree{
    background-image: url('../img/img_equilibree.jpg');
}

#global #global2 .lesPakersCartes .divPaker #pakerDifficile{
    background-image: url('../img/img_difficile.jpg');
}

#global #global2 .lesPakersCartes .divPaker .divPourcentage{
    display: flex;
    justify-content: space-between;
    width: 17rem;
    font-size: 1.2rem;
}

#global #global2 .lesPakersCartes .divPaker .divPourcentage .typeCartePourcentage{
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 13rem;
}

#global #global2 .lesPakersCartes .divPaker .divPourcentage .pourcentage{
    display: flex;
    flex-direction: column;
    align-items: end;
    width: 4rem;
}

