@import url("form.css");
@import url("header.css");
@import url("botao.css");
@import url("home.css");
@import url("pesquisa.css");
@import url("edicao.css");
@import url("usuarios.css");
@import url("login.css");


@font-face {
font-family: 'BW Seido Raw';
  src: url('/static/fonte/SourceSans3-VariableFont_wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'BW Seido Raw';
    src: url('/static/fonte/Bw Seido Raw Black.otf') format('truetype');
    font-weight: bold;
    font-style: normal;
  }

:root{
    --cor-de-fundo:  #CBCCCB ;
    --cor-de-fonte: #000000;
    --cor-do-titulo: #041266;
    --cor-branca: #FFFFFF;
    --preto85: #414140;
    --preto50: #8A8B8A;
    --preto: #000000;
    --fonte-principal: "Source Sans";
    --fonte-secundaria: "BW Seido Raw"
}


body{
  
    /* background-color: #cdcecd;
    background-image: url("static/images/FundoForm.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
    
    background-color: var(--cor-de-fundo);
    font-family: var(--fonte-principal);
    font-size: 50px;
    font-weight: 400;
    color: var(--cor-de-fonte)
}

@media screen and (min-width: 1024px){
  body{
    background-color: var(--cor-de-fundo);
    font-family: var(--fonte-principal);
    font-size: 32px;
    font-weight: 400;
    color: var(--cor-de-fonte)
  }
}