/*estilização da pagina completa*/
:root {
  --links: #4d604d; /* cor de links, botões e textos */
  --brown: #68421d; /* our black - header e fachada */
  --bege: #e0b580; /* our white - background */
  --detailsone: #d59647; /* yellow claro */
  --details: #d09245; /*yellow too, but escuro bemmm pouco */

  --border: 0.1rem solid #d09245; /* analisar se realmente vai ter */
  font-size: 12px;
}

/* fonte a ser usada em letras minusculas, subtítulos */
@font-face {
  font-family: "Saudagar";
  src: url("/assets/fonts/saudagar.woff2") format("woff2");
  font-weight: normal;
}

/* fonte a ser usada em letras maiusculas em negrito */
@font-face {
  font-family: "PerpetuaB";
  src: url("/assets/fonts/perpetuabold.woff2") format("woff2");
  font-weight: normal;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: none; /* iniciais maiusculas */
  transition: 0.3s linear;
}

body {
  background-color: var(--bege);
}
