body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    text-align: center;
    margin: 0;
    padding: 20px;
}

.game-container {
    max-width: 400px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#word {
    font-size: 24px;
    letter-spacing: 5px;
    margin: 20px 0;
}

#keyboard button {
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button {
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#keyboard button:hover {
    background-color: #0056b3;
}

#keyboard button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.figure {
    position: relative;
    height: 200px;
    margin: 20px auto;
}

.figure div {
    position: absolute;
    background: blue;
}

.head {
    width: 40px;
    height: 40px;
    border: 5px solid #000;
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.body {
    width: 10px;
    height: 80px;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
}

.arm-left {
    width: 60px;
    height: 10px;
    top: 60px;
    left: calc(50% - 55px);
    transform: rotate(45deg);
}

.arm-right {
    width: 60px;
    height: 10px;
    top: 60px;
    left: calc(50% - 5px);
    transform: rotate(-45deg);
}

.leg-left {
    width: 60px;
    height: 10px;
    top: 135px;
    left: calc(50% - 55px);
    transform: rotate(-45deg);
}

.leg-right {
    width: 60px;
    height: 10px;
    top: 135px;
    left: calc(50% - 5px);
    transform: rotate(45deg);
}