body {
  background-color: #1A1A1A; /* roasted coffee */
  color: #F5ECD9; /* sepia white */
  font-family: monospace;
  font-size: 12px;
  margin: 0;
  padding: 0;
}

.content {
  position: absolute;
  top: 7%;
  left: 22%;
  letter-spacing: 0.5px;
}
a {
  color: #6EE7F9; /* soft copper/sepia tone */
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:hover,
a:focus {
  color: #9AF1FF;
  text-shadow:
    0 0 4px rgba(110, 231, 249, 0.8),
    0 0 12px rgba(110, 231, 249, 0.6),
    0 0 24px rgba(110, 231, 249, 0.4);
}

a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  opacity: 0;
  box-shadow: 0 0 8px currentColor;
  transition: opacity 0.2s ease;
}

a:hover::after {
  opacity: 1;
}

