body {
    font-family: Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: url('TH.png');
    background-size: cover;
    background-position: center;
}

#board {
    display: grid;
    grid-template-columns: repeat(10, 50px); /* 10 columns for the board */
    grid-gap: 5px;
    margin-bottom: 20px;
}

.tile {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #888;
    background-color: #fff;
    font-size: 24px;
}

.correct {
    background-color: green;
    color: white;
}

.present {
    background-color: yellow;
    color: black;
}

.absent {
    background-color: red;
    color: white;
}

#keyboard {
    display: grid;
    grid-template-columns: repeat(10, 40px); /* 10 columns for the keyboard */
    grid-gap: 5px;
    margin-bottom: 20px;
}

.key {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #888;
    background-color: #fff;
    cursor: pointer;
    font-size: 18px;
}

.key:hover {
    background-color: #ddd;
}

#controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

button {
    margin: 0 10px;
    padding: 10px 20px;
    border: none;
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

#message {
    margin-top: 20px;
    font-size: 20px;
}

.credits {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: black;
}

