body {
    font-family: sans-serif;
    background: #070707;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.riddle-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 90%;
    max-width: 500px;
}

#riddle-text {
    font-size: 1.5em;
    min-height: 80px;
    margin-bottom: 20px;
}

input {
    width: 80%;
    padding: 10px;
    font-size: 1em;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    background: #383838;
    color: white;
    border: none;
    border-radius: 5px;
}

#feedback-message {
    margin-top: 20px;
    font-size: 1.2em;
    font-weight: bold;
    min-height: 30px;
}

.correct {
    color: #28a745;
}

.wrong {
    color: #dc3545;
}