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

.container {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.options {
    margin: 20px 0;
}

button {
    margin: 10px 10px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

#feedback {
    font-size: 18px;
    font-weight: bold;
    height: 30px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px;
}

#word-display {
    font-size: 24px;
    font-weight: bold;
}

a {
    text-decoration: none;
}