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

#game-container {
    text-align: center;
}

#image-container {
    width: 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    filter: blur(150px);
    margin-bottom: 20px;
}

#guess-input {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
}

#submit-guess {
    padding: 10px 20px;
}