<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  margin: 0;
  padding: 0;
  font-family: Roboto, sans-serif;
}

.menu {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: 800px;
  margin: 20px auto;
  border-bottom: 1px solid #eee;
}
@media (max-width: 650px) {
  .menu {
    flex-direction: column;
    align-items: center;
  }
}
.menu .item {
  padding: 18px 28px;
  cursor: pointer;
  transition: color 0.3s ease-out;
  text-decoration: none;
  color: #111;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 14px;
  margin: 5px 0;
}
.menu .item.active {
  color: #fff;
}
.menu .indicator {
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1;
  border-radius: 30px;
}</pre></body></html>