/* -----------------------------------------------------------
   GLOBAL RESET / BASE
----------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  background-color: #f4f6f8;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.modal-open {
  overflow: hidden;
}

body.modal-open .navbar,
body.modal-open .main-page,
body.modal-open footer {
  opacity: 0.15;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
