
 /*Fonte dos Labels*/
 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');


/*FONTE TITULO*/
@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');

/*FONTE NUMEROS*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');


  /*Configuraçoes iniciais*/
 *{
    margin: 0;
    padding: 0;
    color: white;
}
 body{
    background-color: black;
}
input {border:0;outline:0;}
input:focus {outline:none!important;}

#titulo-pagina {
    display: inline-block;
    font-family: 'Lora', serif;
    font-size: 35px;
    margin-top: 20px;
    margin-bottom: 0px;
    position: relative;
    left: 50%;
    transform: translateX(-50%)

}
#pagina-1 nav{
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 0px;
    margin-right: 20px;


}
nav a{
    margin-left: 15px;
}
.pagina-navbar{
    width: 60px;
    transition: width 0.25s;
}
#botao-pericias:hover, #botao-mochila:hover, #botao-perfil:hover{
    width: 70px;
}

#pericias-div{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 50px;
    
}
.caixa-pericia{
    margin: 50px;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100px;
    background-color: rgb(0, 0, 0);
    padding: 0px 15px 50px 15px;

    border: 2px solid white;
    border-radius: 0 0 50% 50%;
}
.caixa-pericia label {
    font-size: 26px;
    border-bottom: 2px solid white;
    width: 100%;
}
.caixa-pericia input {
    height: 15vh;
    background-color: rgb(0, 0, 0);
    text-align: center;
    font-size: 60px;

}