.health-game-container {
    position: relative;
    width: 100%; /* Adjust as needed */
    max-width: 600px; /* Adjust as needed */
    margin: auto;
}

.game-elements {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.game-element {
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    /* Add more styling as needed */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent */
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-text {
    color: white;
    font-size: 20px;
    padding: 20px;
    text-align: center;
}
.central-image {
    height: 300px; /* Adjust as needed */
    background-size: cover;
    background-position: center;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent */
}
