html{
    cursor: url(./imagens/mata_mosquito.png) 30 30, auto;
}



/* Página do App */
body{
    background-image: url(./imagens/bg.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
}

/* redimensionamento do background e imagens para telas menores */
@media (max-width: 800px) {
    body {
        background-size: auto;
    }

    .mensagem img {
        width: 100vw;
    }
}

.mosquito1 {
    width: 50px;
    height: 50px;
}

.mosquito2 {
    width: 70px;
    height: 70px;
}

.mosquito3 {
    width: 90px;
    height: 90px;
}

.ladoA {
    transform: scaleX(1);
}

.ladoB {
    transform: scaleX(-1);
}

.painel{
    position: absolute;
    width: 190px;
    padding: 10px;
    left: 0px;
    bottom: 0px;
    border-top: solid 1px #fff;
    background-color: #fff;
    opacity: 0.7;
}

.vidas {
    float: left;
}

.cronometro{
    float: left;
    font-size: 20px;
    font-weight: bold;
}

/* Página de Início, Vitória e Game Over */

.tela{
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#breiniciar{
    font-size: 20px;
    color: #fff;
    padding: 10px;
    
    border-radius: 10px;
    background-color: rgb(91, 123, 156);
    box-shadow: 0px;
}

#biniciarjogo{
    font-size: 20px;
    color: #fff;
    padding: 10px;
    
    border-radius: 10px;
    background-color: rgb(214, 7, 7);
    box-shadow: 0px;
}

.nivel select{
    font-size: 16px;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}