body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0e68c;
    margin: 0;
    font-family: Arial, sans-serif;
}

.game-container {
    text-align: center;
}

.ingredients, .candles-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.ingredient, .candle {
    padding: 10px;
    margin: 0 10px;
    border: 2px solid #000;
    border-radius: 5px;
    background-color: #fff;
    cursor: grab;
}

.bowl, .cake {
    margin: 20px auto;
    padding: 50px;
    border: 2px solid #000;
    border-radius: 10px;
    background-color: #fff;
}

#bake-button, #light-candles-button {
    padding: 10px 20px;
    margin: 20px;
    border: none;
    border-radius: 5px;
    background-color: #ff6347;
    color: #fff;
    cursor: pointer;
}

#bake-button:disabled, #light-candles-button:disabled {
    background-color: #d3d3d3;
    cursor: not-allowed;
}

.candles {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.candles .candle {
    margin: 0 5px;
}
