body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
}

.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
}

h1 {
    color: #3f51b5;
}

.game-info {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

#timer, #score {
    font-size: 24px;
    font-weight: bold;
}

#restart {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #3f51b5;
    color: white;
    border: none;
    cursor: pointer;
}

#restart:hover {
    background-color: #303f9f;
}

#word-display {
    font-size: 48px;
    font-weight: bold;
    color: #000;
    margin: 40px 0;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#input-field {
    font-size: 24px;
    padding: 10px;
    width: 300px;
    text-align: center;
    border: 2px solid #3f51b5;
    border-radius: 5px;
}

#input-field:focus {
    outline: none;
    border-color: #303f9f;
}

#message {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}