.game-container
{
    position: relative;
    width: 100vw;
    height: 100vh;
    background-image: url("../../assets/actors/static/cutting_board.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#gameCanvas
{
    position: absolute;
    top: 0;
    left: 0;
}

.game-button
{
    position: absolute;
    top: 25px;
    left: 20px;
    padding: 15px 30px;
    font-size: 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #e74c3c;
    color: white;
    display: block;
    z-index: 20000;
}

.game-button:hover
{
    background-color: #c0392b;
}

.score-display
{
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 32px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 15px 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}