
.container{
    text-align: center;
}
.menu button {
    display: block;
    margin-bottom: 5px; 
}
.menu{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh;
}
.inv{
    display: none;
}
.errado{
    background-color: brown;
    color: white;
}
.certo{
    background-color: rgb(56, 165, 42);
    color: white;
}
.game-over{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(131, 32, 32, 0.5); 
    color: white;
    z-index: 9999; 
}
.nextLevel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(32, 131, 45, 0.5); 
    color: white;
    z-index: 9999; 
}