@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap");
/* SCSS HSL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "arial", sans-serif;
  background: #ececec;
  color: #121317;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background: linear-gradient(0deg, #ececec 30%, #b9b9b9 100%);
  z-index: -2;
}

.backgroundEffect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  background-image: repeating-linear-gradient(45deg, rgba(236, 236, 236, 0.2), rgba(236, 236, 236, 0.2) 2px, transparent 1px, transparent 10px);
}

main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  text-align: center;
}

.br {
  position: fixed;
  bottom: -2px;
  right: 0;
  transform: scaleX(-1);
}

.home {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  z-index: 3;
}/*# sourceMappingURL=404.css.map */