body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000;
    color: #0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: rgba(0, 255, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    text-align: center;
    width: 80%;
    max-width: 1200px;
}

h1 {
    margin-bottom: 20px;
}

#target-text {
    font-size: 24px;
    margin-bottom: 10px;
}

#word-meaning {
    font-size: 18px;
    margin-bottom: 20px;
}

#input-text {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: rgba(0, 255, 0, 0.1);
    color: #0f0;
    outline: none;
}

#feedback {
    font-size: 18px;
    margin-bottom: 20px;
}

#stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

#keyboard {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.row {
    display: flex;
}

.key {
    min-width: 40px;
    height: 40px;
    margin: 5px;
    border: 1px solid #0f0;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 0 5px;
}

.key.highlight {
    background-color: rgba(0, 255, 0, 0.5);
}

.home-key {
    background-color: #ffcc00;
}

.space-key {
    width: 300px;
}

#finger-tip {
    font-size: 18px;
    margin-bottom: 10px;
}

#finger-image {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hand {
    display: flex;
    flex-direction: row;
    width: 150px;
    justify-content: space-between;
}

.finger {
    width: 20px;
    height: 80px;
    background-color: rgba(0, 255, 0, 0.3);
    border-radius: 10px;
}

.finger.active {
    background-color: #0f0;
}

button {
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    background-color: rgba(0, 255, 0, 0.1);
    color: #0f0;
    border: 1px solid #0f0;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: rgba(0, 255, 0, 0.3);
}
