@import url("./home.css");
* {
  box-sizing: border-box;
}

body,
html {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto-VariableFont_wdth,wght.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap; /* Optional: improves performance */
}

body {
  background: #6a2a9b;
  background: linear-gradient(
    180deg,
    rgb(29, 33, 45) 26%,
    rgb(19, 21, 29) 51%,
    rgb(10, 11, 16) 88%
  );
  font-family: "Roboto";
  color: #ffffff;
  font-size: 16px;
}
