* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-ink);
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.icon-link,
.primary-control,
.nav-button,
.srs-actions button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  text-decoration: none;
  transition: transform var(--duration-fast), box-shadow var(--duration-fast);
}

.icon-link:hover,
.primary-control:hover,
.nav-button:hover,
.srs-actions button:hover {
  transform: translateY(-1px);
}
