@font-face {
  font-family: "Verite";
  src:
    local("Verite"),
    url("/assets/fonts/VeniteAdoremus.ttf") format("truetype");
}

*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

:root {
  /* Fonts */
  --display: 'Verite';
  /* Palette*/
  --text: rgb(232, 236, 252);
  --base: rgb(24, 28, 39);
  --sign: rgb(100, 149, 237);
}

html {
  width: 100vw;
  min-height: 100svh;
  overflow-x: hidden;
  overflow-y: hidden;
}

html, body {
  position: relative;
}
body {
  width: 100vw;
  height: 100svh;
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  background: var(--base);
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}