body {
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    font-family: Arial, sans-serif;
}

.game {
    display: flex;
    justify-content: center;
    background-color: white;
    padding: 50px;
    background-color: white;
}

.form {
    display: grid;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.jugadores {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

#num-players {
    margin-left: 10px;
    width: 45px;
}

.num-players-live {
    margin-left: 20px;
    width: 45px;
}

.info {
    display: grid;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 320px;
    text-align: center;
}

.siguiente-turno {
    display: flex;
}

#dado-value {
    text-align: center;
    font-size: 50px;
}

.fichas {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.fichas img {
    justify-content: center;
    align-items: center;
    width: 20px;

}

.game-board {
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    margin: 0 auto;
}

.game-board img {
    width: 600px;
}