* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url("https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;700;800&display=swap");

body {
  font-family: "Fira Code", monospace;
  background: #0a0a0a;
  min-height: 100vh;
  overflow: hidden;
}

#dots-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

#center-text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 1;
  color: #fff;
  font-size: 8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  user-select: none;
  text-align: center;
}

/* Links */
#links {
  position: fixed;
  bottom: 45%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  gap: 2.5rem;
}

#links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

#links a:hover {
  color: #fff;
}

/* Corners */
#corners {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: rgba(120, 120, 120, 0.3);
  border-style: solid;
}

.corner.tl {
  top: 20px;
  left: 20px;
  border-width: 3px 0 0 3px;
}

.corner.tr {
  top: 20px;
  right: 20px;
  border-width: 3px 3px 0 0;
}

.corner.bl {
  bottom: 20px;
  left: 20px;
  border-width: 0 0 3px 3px;
}

.corner.br {
  bottom: 20px;
  right: 20px;
  border-width: 0 3px 3px 0;
}

@media (max-width: 768px) {
  #center-text {
    font-size: 4rem;
  }
}

@media (max-width: 480px) {
  #center-text {
    font-size: 2.8rem;
  }
}
