*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    
}

@font-face {
    font-family: Leandro;
    src: url("../projeto/fonts/Leandro4-Regular.otf");
    
}






.letras{
    position: absolute;
    font-weight: bold;
    font-size: 35px;
    margin-left: 95px;
    margin-top: 20px;
    color: white;
    text-shadow:#000 1px -1px, #000 -1px 1px, #000 1px 1px, #000 -1px -1px;
    font-family: Impact;
}

.buttomplay{
    position: absolute;
    width: 150px;
    height: 50px;
    background-color: orange;
    border-radius: 50px;
    border-width: 11px;
    border-color: rgb(255, 94, 0);
    color: white;
    margin-left: 220px;
    margin-top: 60px;
    font-family: Impact;
    font-size: 25px;
}

.titulo{
    position: absolute;
    width: 180px;
    height: 150px;
    margin-left: 20px;
    margin-top: 150px;
    font-family: Leandro;
}

.buttom{
    position: absolute;
    width: 150px;
    height: 50px;
    background-color: orange;
    border-radius: 50px;
    border-width: 11px;
    border-color: rgb(255, 94, 0);
    color: white;
 
    margin-left: 50px;
    margin-top: 60px;
    font-family: Impact;
    font-size: 25px;
}

.game-board {
    width: 600px;
    height: 500px;
    border-bottom: 40px solid rgb(221, 160, 69);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: linear-gradient(#87CEEB, #E0F6FF);
    border-style: solid;
    border-radius: 5px;
    font-family: Leandro;
}

.obstaculo {
    position: absolute;
    bottom: 0;
    width: 100px;
    animation: obstaculo-animation 1.5s infinite linear;
}

.pontuacao {
    position: absolute;
    bottom: 0;
    width: 40px;
    animation: pontuacao-animation 1.7s infinite linear;
   
}

.pontuacao-alta{
    position: absolute;
    bottom: 0;
    width: 45px;
    animation: pontuacao-animation 1.7s infinite linear;
}

.gamba {
    width: 180px;
    position: absolute;
    bottom: 0;
    
    
}

.jump {
    animation: jump 700ms ease-out;
}

.contador {
    position: static;
    font-size: 20px;
    margin-left: 500px;
    margin-top: 20px;
    font-family: Impact;
}

.vitoria {
    position: absolute;
    font-weight: bold;
    font-size: 60px;
    font-family: Leandro;
    
    color: red;
    text-shadow:#000 1px -1px, #000 -1px 1px, #000 1px 1px, #000 -1px -1px;
    
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%) 
    
}

.vitoria p{
    font-size: 30px;
}

.detalhe{
    font-family: Leandro;
}


@keyframes obstaculo-animation {
    from {
       right: -80px;
    }
    to {
       right: 100%;
    }
}



@keyframes pontuacao-animation {
    from {
       right: -160px;
    }
    to {
       right: 100%;
    }
}



.jump {
    animation: jump 700ms ease-out;
}

@keyframes jump {
    0% {
        bottom: 0;
    }

    40% {
        bottom: 180px;
    }

    50% {
        bottom: 180px;
    }

    60% {
        bottom: 180px;
    }

    100% {
        bottom: 0;
    }
}

@media screen and (max-width: 768px){
    .game-board{
        width: 500px;
       height: 450px;
    
    }

    .contador {
        
        margin-left: 400px;
    }

    .obstaculo{
        animation: obstaculo-animation 1s infinite linear;
    }

    .pontuacao{
        animation: obstaculo-animation 1.04s infinite linear;
    }

    .pontuacao-alta{
        animation: obstaculo-animation 1.04s infinite linear;
    }
    
    .game-board {
    width: 400px;
    height: 350px;
    }
    
 .letras{
      margin-left: 50px;
      margin-top: 35px;
      font-size: 28px;
      margin-top: 40px;
 }
   .buttom{
    position: absolute;
    width: 100px;
    height: 30px;
    font-size: 10px;
    margin-left: 50px;
      margin-top: 80px;
      border-width: 5px;
   }
   
   .buttomplay{
    position: absolute;
    width: 100px;
    height: 30px;
    font-size: 10px;
    margin-left: 170px;
      margin-top: 80px;
     border-width: 5px;
   }
   
   
    
    .contador {
    font-size: 20px;
    margin-left: 300px;
    margin-top: 20px;
    font-family: Impact;
}
   .titulo{
        margin-left: 20px;
    margin-top: 100px;
   }

.abertura{
    max-width: 450px;
}

.vitoria{
    font-size: 35px;
}

.vitoria p{
    font-size: 20px;
}



   
}