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

html,
body {
  height: 100%;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  background-color: #ffffff;
  color: #333333;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.name {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-align: center;
  transition: color 0.3s ease;
}

.name:hover {
  color: #666666;
}

@media (prefers-reduced-motion: reduce) {
  .name {
    transition: none;
  }
}

@media (prefers-color-scheme: dark) {
  html,
  body {
    background-color: #1a1a1a;
    color: #ffffff;
  }

  .name:hover {
    color: #cccccc;
  }
}
