@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital@1&family=Poppins:wght@300;400;500;600;700&family=Press+Start+2P&display=swap');

body{
    margin: 0;
    background-color: black;
    padding: 10px 20px;
    overflow: hidden;
}

p{
    color: white;
    font-family: sans-serif;
    font-size: 14px;
    margin-bottom: 6px;

}

.container{
    position: relative;
    width: 1200px;
    height: 600px;

}

.botao{
    position: relative;
    margin-left: 43%;
}
button{
    font-family: 'Press Start 2P', cursive;
    width: 200px;
    height: 90px;
    font-size: 25px;
    align-items: center;
    border-radius: 10px;
    background-color: yellow;
    border: none;
}

.botao, button{
    display: flex;
}

.contagem{
    display: none;
    position: relative;
    left: 47%;
    top: 30%;
}

.contagem span{
    font-size: 70px;
    color: yellow;
}

.game{
    position: relative;
    display: block;
}

.game-win{
    position: absolute;
    left: 40%;
    top: 30%;
    display: none;
}

.game-win p{
    font-size: 40px;
    font-family: 'Press Start 2P', cursive;
}

.game-over{
    position: absolute;
    left: 40%;
    top: 30%;
    display: none;
}

.game-over p{
    font-size: 40px;
    font-family: 'Press Start 2P', cursive;
}

.scoreFinal{
    position: absolute;
    left: 40%;
    margin-top: 10%;
    display: none;
}

.scoreFinal span{
    font-size: 40px;
}

.game button{
    position: absolute;
    width: 235px;
    margin-top: 17%;
    left: 40%;
    display: none;
}

button:hover{
    background: rgba(245, 221, 5, 0.9);
    color: black;
}

.organizar{
    height: 600px;
    align-items: center;
    justify-content: center;
    
}

canvas{
    margin-top: 10px;
    width: 1300px;
    height: 600px;
     
}

.organizar-score{
    position: absolute;
    margin-left: 37%;
    margin-top: 30px;
    display: none;
}


span{
    font-family: 'Press Start 2P', cursive;
    font-size: 20px;
}

.iniciar img{
    display: none;
    position: absolute;
    top: 120px;
    margin-left: 500px;    
}