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

:root {
  --bg: #f2f2f2;
  --text: #1a1a1a;
}

::selection {
  background-color: #ffffff;
  color: var(--text);
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  background-color: var(--bg);
  font-family: 'Inria Serif', Georgia, serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  cursor: default;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tagline {
  font-family: 'Inria Serif', Georgia, serif;
  font-weight: 300;
  font-size: clamp(14px, 1.5vw, 20px);
  letter-spacing: 0.01em;
  color: var(--text);
  line-height: 1.4;
}
