:root {
  --notice-color: #003d6d;
  --bg-top: #f2f8fc;
  --bg-bottom: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 1rem;
  min-height: 100%;
}

body {
  font-family: "Roboto", "Helvetica Neue", Arial, sans-serif;
}

.page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 0;
}

.notice {
  margin: 0;
  color: var(--notice-color);
  font-size: 1.25rem;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
  max-width: 30rem;
}
