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

* {
    user-select: none;
}

div#area {
    width: 700px;
    height: 450px;
    background-color: skyblue;
    position: relative;
    overflow: hidden;
    z-index: 0;
    margin: auto;
    border: 2px black solid;
}

.bird {
    position: absolute;
    left: 100px;
    width: 34px;
    top: 50px;
    left: 100px;
    user-select: none;
    margin: 0px;
    padding: 0px;
}

.subir {
    transform: rotate(-45deg);
}

.descer {
    transform: rotate(35deg);
}


.pontuacao {
    position: absolute;
    right: 17px;
    top: 2px;
    font-size: 40px;
    padding: 0px;
    margin: 0;
    font-family: 'Pixel';
    z-index: 10;
}

div#perdeu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;    
    width: 70vw;
    height: 70vh;
    background-color: skyblue;
    position: relative;
    width: 100%;
    height: 100%;
}

#perdeu p {
    background-image: linear-gradient(to top, rgb(139, 5, 5), red);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: rgb(177, 14, 14);
    
    font-family: 'Serif';
    font-style: oblique;
    font-size: 60px;
    font-weight: 700;
    font-style: oblique;
    order: 100;
    
    justify-content: center;
}

#perdeu:nth-child(1) {
    font-weight: 100;
    font-size: 40px;
}


.par {
    position: absolute;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: fit-content;
    margin-right: 100px;
}


.coluna {/*configura uma coluna(base + ponta)*/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}


.par .ponta {
    width: 60px;
    height: 28px;
    border: 1px rgb(19, 56, 2) solid;
    background-color: green;
}


.base {
    background-color: green;
    width: 80%;
    height: 100px;
    display: flex;
    justify-content: center;
    border: 1px rgb(19, 56, 2) solid;
}


.teste {
    color: red;
    width: 20px;
    height: 20px;
}

