@import url("/assets/font/font.css");
* {
  box-sizing: border-box;
  font-family: "Red Hat Display", sans-serif;
}

html,
body {
  height: 100vh;
  margin: 0;
}

body {
  background: #090f1a;
}
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='32' height='32' fill='none' stroke='rgb(148 163 184 / 0.05)'%3e%3cpath d='M0 .5H31.5V32'/%3e%3c/svg%3e");
  mask-image: linear-gradient(to bottom, transparent, black);
}