body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f0f0f0;
}
.guessSquare {
    width: 50px;       
    height: 50px;      
    border-style: solid;
    border-width: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 40px;
    margin: 0 2px;
}
.wordRow{
    display:flex;
    margin: 5px 0;
    background-color:white;
}
.keyboard {
    display: grid;
    grid-template-columns: repeat(10, 50px); /* 10 keys per row */
    gap: 5px; /* Space between keys */
    margin-top: 20px;
}
.key {
    width: 50px;       /* Width of each key */
    height: 50px;      /* Height of each key */
    background-color:rgb(163, 159, 159);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s;
}
.key:hover {
    background-color: #45a049; /* Darker shade on hover */
}
#result{
    font-size: 30px;
}
#playAgain{
    margin-left:20px;
}
#giveUp{
    margin-top: 20px;
}