/*  Styles  */
html {
  scroll-snap-type: none;
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}
body {
  min-height: 100lvh;
  overflow-x: hidden;
  background-color: #1a1a1a;
  /* background: url("../assets/template.png") no-repeat top center; */
}
body.no-js {
  display: none;
}
.noise {
  position: fixed;
  height: 100lvh;
  width: 100lvw;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background: url("../assets/noise.svg") repeat;
  background-size: 400px 400px;
  mix-blend-mode: multiply;
  z-index: -7;
}

.starsBG {
  position: fixed;
  height: 100lvh;
  width: 100lvw;
  inset: 0;
  background: url("../assets/stars_background.svg") no-repeat top center;
  background-size: cover;
  z-index: -9;
}
a {
  color: white;
  text-decoration: none;
}
.button:hover {
  cursor: pointer;
}

.bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}

.top {
  position: absolute;
  top: 0;
  left: 0;
}
