@font-face {
  font-family: 'Inter Variable';
  src: url('../fonts/InterVariable.ttf') format('truetype');
  font-weight: 100 900;
  font-optical-sizing: 0 32;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

body {
  font-family: 'Inter Variable', 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--color-text);
  background: #fff;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input {
  font: inherit;
  color: inherit;
}

:root {
  --color-text: #1a1a1a;
  --color-text-muted: #5a5a5a;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-btn-primary-bg: #101010;
  --color-btn-primary-text: #ffffff;
  --color-btn-secondary-bg: #d9d9d9;
  --color-btn-secondary-text: #101010;
  --font-display: 'PP Neue Montreal', 'Inter Variable', system-ui, -apple-system, sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --color-problem-bg: #0a0a0a;
  --color-problem-panel: #141414;
  --color-problem-muted: rgba(255, 255, 255, 0.55);
  --color-divider: rgba(255, 255, 255, 0.12);
  --container-max: 80rem;
  --radius-btn: 0px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
