#snake-container {
    width: 460px;
    height: 340px;
    box-shadow: 0px 0px 10px -5px #000000;
    background: rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

#flour-game .row {
    height: 100%;
}

#flour-game .col-9, #flour-game .col-3 {
    display: flex;
    justify-content: center;
}

#flour-game .col-9 {
    align-items: center;
}

#flour-game .col-3 {
    align-items: flex-end;
    position: relative;
}

#flour-game .col-3 .score {
    justify-content: center;
}

#flour-game .snake-key {
    position: absolute;
    top: 60px;
    height: 80px;
    width: auto;
}

#snakeScore {
    text-align: center;
    margin-left: 5px;
}

.resume-snake {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.5);
    position: relative;
}

.snake-part {
    position: absolute;
    width: 20px;
    height: 20px;
    background: url("../images/sprites/flour_bag_full.png");
    background-size: contain;
}

#sp0 {
    background: url("../images/sprites/flour_bag.png");
    background-size: contain;
}

#food {
    position: absolute;
    width: 20px;
    height: 20px;
    background: url("../images/sprites/flour_bit.png");
    background-size: contain;
}

.ouch {
    background: url("../images/sprites/snake_hole.gif");
    border-radius: 50%;
    position: absolute;
    height: 20px;
    width: 20px;
}