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

html, body {
  height: 100%;
}

body {
  font-family: 'Courier New', monospace; 
  background-color: #f5f5f5;
  overflow-x: hidden;
  cursor: crosshair;
  -webkit-overflow-scrolling: touch;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  height: -webkit-fill-available;
  height: 100%;
  position: relative;
}

.ascii-truffle {
  font-size: clamp(8px, 2vw, 14px);
  line-height: 1;
  white-space: pre;
  color: #333;
  user-select: none;
  position: relative;
  z-index: 1;
  max-width: 90vw;
  overflow: hidden;
}

.description {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  z-index: 2;
}

.description p {
  font-size: 1rem;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #666;
  font-size: 0.8125rem;
  line-height: 1.4;
  padding: 5px 5px 5px 0;
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: darkseagreen;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  transform: translateY(-2px);
  color: #333;
}
