body {
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
    font-size: 24px;
    height: 100vh;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
}

h1 {
    height: 25px;
}
                    
main {
    display: flex;
    flex-direction: column;
    align-items: center;
}
 
.hidden {
    visibility: hidden;
}

.inputBoardRow1, .inputBoardRow2,
.inputBoardRow3, .inputBoardRow4,
.inputBoardRow5, .inputBoardRow6 {
    display: flex;
    width: 950px;
    height: 40px;
    flex-direction: row;
    justify-content: space-around;
    padding: 15px;
}

 .sqr {
    width: 30%;
    aspect-ratio: 1/1;
    border: 3px solid black;
    font-size: 20px;
    text-align: center;
    background-color: #ffffcc;
    margin: 3px;
}

.keyboard {
    display: flex;
    width: 950px;
    height: 100px;
    border: 2px solid black;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    background-color: rgb(239, 226, 226);
    align-items: top;
    padding: 15px;
    margin: 5px;
}
  
.key {
    display: flex;
    width: 70px;
    height: 20px;
    border: 3px solid black;
    font-size: 20px;
    text-align: center;
    align-items: center;
    background-color: #484141;
    color: white;
    margin: 5px;
    padding: 5px;
    gap: 30px;
}

.green {
    background-color: rgb(173, 235, 173);
}

.peach {
    background-color: #ffcc99;
}

#message {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 40px;
    margin: 0px;
    width: 100%;
    height: 25px;
}

#resetButton {
    text-align: center;
    background-color: pink;
    font-size: 20px;
    margin: 35px 0px;
    width: 250px;
    height: 50px;
    padding: 10px;
    border: 3px solid black;
}

#instructions {
    height: 75px;
    font-size: 20px;
    margin: 0px;
}
