

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}


@font-face {
    font-family: "Gumela";
    src: url("/fonts/Gumela.woff2") format("woff2"),
         url("/fonts/Gumela.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  :root {
    --text: #0b132b;
    --bg: #ffffff;
  }
  
  html {
    font-size: 100%;
  }
  

 