:root {
  color: #111;
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: #fff;
}

.page {
  display: grid;
  min-height: 100vh;
  padding: 24px;
  place-items: center;
  text-align: center;
}

.message {
  margin: 0;
  font-size: clamp(28px, 7vw, 64px);
  font-weight: 700;
  line-height: 1.1;
}

.message--error {
  color: #b42318;
  font-size: clamp(20px, 4vw, 32px);
}

