*{
    margin: 0;
    padding: 0;
    box-sizing: content-box;
    font-family: "Poppins",serif;
}
.title{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    font-size: 3rem;
    text-align: center;
    gap : 15px;
    text-transform: uppercase;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
    color : transparent;
}
.title span{
    font-size: 5rem;
    color: #FF0000;
    outline: #0025E1;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
}
.displayPlayer{
    text-align: center;
}
#game{
    width: 70%;
    height: 50%;
    background-color: white;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;

    
    
}
#grid{
    position: relative;
    background-color: white;
    margin: 20px auto;
    display: flex;
    justify-content: center;
    height: fit-content;
    
}
#grid::after{
    position: absolute;
    content: '';
    width: 120%;
    height: 20px;
    bottom : -20px;
    border-radius: 20px 20px 0 0;
    background-color: #0025E1;
}
#gridGame{
    position: absolute;
    background: radial-gradient(circle,transparent , transparent 55.99% , #0025E1 56% , #0025E1 100%);
    background-position: start;
    background-size: calc(100%/7) calc(100%/6);
    /* aspect-ratio: 7/6; */
    border-radius: 20px 20px 0 0;
    content: '';
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-rows: repeat(6, 1fr); /* 6 lignes, hauteur égale */
    grid-template-columns: repeat(7, 1fr); /* 7 colonnes, largeur égale */
}

.feedBack{
    position: absolute;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(8, 139, 8, 0.919);
    top : 50%;
    transform: translateY(-50%);
    z-index: 500;
    color : black;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-family: sans-serif;
    visibility: hidden;
    flex-direction: column;
}
.feedBack button{
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
}
.active{
    visibility: visible;
}

.colum{
    /* height: 100%;
    width: 100px;
    background-color: red; */
    content: '';
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    
}
.pawn{
    /* width: 80px;
    height: 80px; */
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #FF0000; 
    background-color: #FFAF00;
    /* desactive la possibilité de le selectionner avec la souris */
    pointer-events: none; 
    animation: appear var(--animation-time, 0.5s) ;
}
.pawn::after{
    content: '';
    background-color: inherit;
    /* filter: saturate(80%); */
    filter: invert(15%);
    width: 70%;
    height: 70%;
    border-radius: 50%;

}
@keyframes appear {
    0% {
        transform: translateY(var(--start-position, 0));
    }
    100% {
        transform: translateY(0px);

    }
}