* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f7f7f7;
}

.game-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 320px;
    text-align: center;
    position: relative;
}

.score {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
    position: absolute;
    top: 20px;
    left: 20px;
}

.image-placeholder img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.question {
    font-size: 20px;
    margin-bottom: 20px;
}

.answer-buttons button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    cursor: pointer;
    background-color: #006a43;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.answer-buttons button:hover {
    background-color: white;
    color: #006a43
}

.exit-btn {
    background-color: #f44336;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}

.exit-btn:hover {
    background-color: #e60000;
}

.game-controls {
    margin-top: 20px;
}

.feedback {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
    height: 30px; /* to provide space for feedback */
}
