
/* Google Fonts - removido @import bloqueante, fonte carregada via HTML */


:root {
  --title: #000000;
  --text: #555149;
  --text-alt: #e2b699;
  --second: #fff8f2;

  
  --primary: #ad5f2e;

  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  width: 100%;
  height: 100%;
  background-color: var(--white);
}

button {
  cursor: pointer;
}

@media (max-width: 1080px){
  html{
    font-size: 93.75%;
  }
}
@media (max-width: 720px){
  html{
    font-size: 87.5%;
  }
}