body::before {
  content: "";
  position: fixed;
  top: -20px;
  left: -10vw;
  width: 120vw;
  height: 120vh;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.06), transparent 80%);
  pointer-events: none;
  z-index: 1000;
  transform: scale(2.35);
}


body::after {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0.015) 1px,
    transparent 1px,
    transparent 2px
  );
  z-index: 1001;
  pointer-events: none;
}

a {
  color: white;
  text-decoration: none;
  transition: text-shadow 0.3s ease;
}
a:hover {
  text-shadow: 0 0 5px white;
}
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-color: black;
  color: white;
  font-family: 'Nintendo-DS-BIOS', sans-serif;
  overflow: hidden;
  cursor: url('cursor.png'), default;
}
textarea {
  background-color: #000000;
  color: white;
  font-family: 'Nintendo-DS-BIOS', sans-serif;
  resize: none;
}
.signin-div {
    background-color: black;
    color: white;
    position: fixed;
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: 'Nintendo-DS-BIOS', sans-serif;
    transform: translate(-50%, -50%);
    border: 2px solid white;
    margin: 2px 10px 0;
  padding: 20px 12px;
}
button {
    background-color: black;
    color: white;
    font-family: 'Nintendo-DS-BIOS', sans-serif;
}
@font-face {
  font-family: Nintendo-DS-Bios;
  src: url(https://defisreal.world/fonts/Nintendo-DS-BIOS.ttf);
}