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

:root {
  --primary-color: #003366;
  --secondary-color: #ff6347;
  --on-primary-color: #fff;
  --on-secondary-color: #000;
  --text-color: #333;
  --background-color: #f5f5f5;
  --surface-color: #fff;
  --border-color: #ddd;
  --border-radius: 0.5rem;
  --spacing: 1rem;
}

html {
  font-size: 13pt;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;

  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  background-color: var(--background-color);
  color: var(--text-color);
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

h1 {
  font-size: 1.5rem;
  letter-spacing: 0.02rem;
  font-weight: 900;
}
