@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  /* outline: 3px solid red !important; */
}
html,
body {
  margin: 0px;
  height: 100%;
  /* overflow-x: hidden; */
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

ul {
  padding: 0 0 0 15px;
  li {
    padding: 10px 5px;
    list-style-type: initial;
  }
}

ol {
  padding: 0 0 0 20px;

  li {
    padding: 10px 5px;
    list-style-type: decimal;
  }
}
