@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;

    height: 100vh;

    background-color: #f9cf9f;
}

.no-context-menu {
    pointer-events: none;
}

.grilleDeJeu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;

    width: 720px;
    height: 560px;

    background-color: #82d65b;
    box-shadow: rgb(0, 0, 0) 0px 0px 0px 4px;

}

.caseDeJeu {
    box-shadow: inset rgba(0, 0, 0, 0.150) 0px 0px 0px 0.7px;
    background-color: #82d65b;
    /*82d65b*/

    height: 40px;
    width: 40px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: 'Instrument Sans', sans-serif;
    font-size: 2rem;
    color: rgb(0, 0, 0);

    transition: .01s;
}

.caseDeJeu:hover {
    box-shadow: inset rgba(255, 255, 255, 0.179) 0px 0px 0px 20px;
    cursor: default;
}

.caseDeJeu {
    background-image: url(caseSansDrapeau.png);
    background-size: cover;
}


.infos {
    width: 720px;
    height: 200px;
    background-color: #82d65b;
    box-shadow: rgb(0, 0, 0) 0px 0px 0px 4px;

    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nbDeDrapeau {
    height: 150px;
    width: 300px;

    display: flex;
    justify-content: space-around;
    align-items: center;

    font-family: 'Instrument Sans', sans-serif;
    font-size: 5rem;
    font-weight: 900;
}

.logoDrapeau {
    height: 120px;
    width: 120px;
    background-image: url(drapeau.png);
    background-size: cover;

}

.temp {
    height: 150px;
    width: 300px;

    height: 150px;
    width: 300px;

    display: flex;
    justify-content: space-around;
    align-items: center;

    font-family: 'Instrument Sans', sans-serif;
    font-size: 5rem;
    font-weight: 900;
}