.carrecentral {
    width: 600px;
    height: 400px;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    place-items: center;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

html {
    min-height: 100vh;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: aliceblue;
    /* background-color: aquamarine; */
}

.titre {
    font-size: xx-large;
    font-style: italic;
    margin-bottom: 20px;
}

.clavier {
    display: grid;
    grid-template-columns: repeat(3, 30px);
    grid-template-rows: repeat(3, 30px);
    gap: 10px;
}

#buttonreset {
    margin-top: 20px;
    padding-left: 20px;
    padding-bottom: 5px;
    padding-right: 20px;
    padding-top: 5px;
}


#resultText {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #09aa2c;

}

#names {
    position: absolute;
    bottom: 0px;
    right: 0px;
    margin-bottom: 20px;
    margin-right:20px;
    font-size: 16px;
    color:black

}

.nomjoueurs {
    display: flex;
    place-items: center;
    margin-top: 10px;
}

.nomjoueurs h1 {
    margin-right: 10px;
}



