html {
  scroll-behavior: smooth;
}

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;
}

/** Classes for skip nav link component **/
.skip-nav-class, .back-nav-class {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  border-radius: 0px;
  clip: rect(0 0 0 0);
  outline: 2px solid blue;
}

.skip-nav-class:focus, .back-nav-class:focus {
  position: absolute;
  top: 82px;
  left: 26px;
  width: 50%;
  min-width: 200px;
  height: auto;
  padding: 1rem;
  clip: auto;
  background: white;
  z-index: 1;
  outline: 2px solid blue;
}
