:root {
  --bg-color: #050508;
  --text-color: #ffffff;
  --font-mono: "Courier New", Courier, monospace;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: var(--font-mono);
  text-transform: lowercase;
  overflow: hidden;
}

#network {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 500px;
  text-align: left;
  padding: 2rem;
}

.name {
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-item {
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--text-color);
  display: block;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  transition: text-shadow 0.2s;
}

.link-item:hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.link-item::before {
  content: "> ";
}