/* reset everything, browsers add wierd default stuff */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* full screen */
html,
body {
  width: 100vw;
  height: 100vh;
}

/* dark purple/black gradient bg, looks kinda sick imo */
body {
  background: linear-gradient(
    to bottom,
    #23052A 0%,
    #511826 40%,
    #04010C 80%,
    #000000 100%
  );
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* noise texture overlay, gives it that old film grain look */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
