* {
    box-sizing: border-box;
}

@font-face{
    font-family: 'Pixel';
    src: url('../fonts/Pixel.ttf');
}

[wm-flappy] {
    position: relative;
    border: solid 5px dodgerblue;
    height: 700px;
    width: 1200px;
    margin: 15px;
    background-color: deepskyblue;
    overflow: hidden;

}

.passaro{
    position: absolute;
    width: 60px;
    left: calc(50% - 30px);
}

.par-de-barreiras{
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.barreira{
    display: flex;
    flex-direction: column;
    align-items: center;

}
.barreira .borda {
    height: 30px;
    width: 130px;
    background: linear-gradient(90deg, green, lightgreen);
    border: solid 2px #000000;
}

.barreira .corpo {
    height: 150px;
    width: 110px;
    background: linear-gradient(90deg, green, lightgreen);
    border-left: solid 2px black;
    border-right: solid 2px black;
}

.progresso {
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: Pixel;
    font-size: 70px;
    z-index: 100;
}