@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Poppins:400,var(--label-h3-font-weight),600,var(--display-h1-font-weight),var(--body-p1-font-weight),500,700,var(--title-h1-font-weight),var(--body-p3-font-weight)");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
  font-family: "Poppins", Helvetica;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}
/* 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;
}

/* Paragraphs */
p {
  margin: 0;
}

/* ===== LISTS ===== */

ul,
ol {
  margin: 1em 0 1em 1.5em;
  padding: 0;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

li {
  margin-bottom: 0.4em;
  line-height: 1.6;
}

/* ===== TEXT FORMATTING ===== */

strong,
b {
  font-weight: 700;
  color: #000;
}

em,
i {
  font-style: italic;
}
