body {
    height: 100%;
}

#header {
    height: 60px;
}

#footer {
    height: 60px;
}


#zoneJeu {
    display: flex;
    flex-direction: row;
    align-items: start;
    border-radius: 5px;
}

#rightBoard {
    min-width: 420px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

#leftBoard {
    flex: 1 1 100%;
}

.essaiContainer {
    display: flex;
    flex-direction: row;
}

.notGuessedSpace {
    width: 80px;
    border: solid 1px gray;
    border-radius: 10px;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notGuessedColour {
    padding: 15px;
    margin: 5px;
    border-radius: 50%;
}

#inputBoard {
    margin: 5px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 265px;
}

.guessButton {
    padding: 15px;
    margin: 5px;
    border-radius: 50%;
}

.helpLine {
    margin: 10px 0 10px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#helpbox1 {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px 0 0;
    border-radius: 5px;
    border: solid 3px #8888e3;
}
#helpbox2 {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px 0 0;
    border-radius: 5px;
    border: solid 3px #4545a3;
}