@media print {
  body {
    background: white;
  }
  
  header, nav, footer, button {
    display: none !important;
  }
  
  .no-print {
    display: none !important;
  }
  
  .container {
    max-width: 100%;
  }
}

.bg-navy-900 {
  background-color: #1e3a8a;
}

.bg-navy-800 {
  background-color: #1e40af;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}