/* ls-reset */
/* https://www.joshwcomeau.com/css/custom-css-reset/#five-sensible-media-defaults-6 */
*, *::before, *::after {
    box-sizing: border-box;
}
* {
    margin: 0;
}
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}
input, button, textarea, select {
    font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}
a {
    text-decoration: none;
}
body {
    /* line-height: 1.5; */
    -webkit-font-smoothing: antialiased;
    background: rgb(20, 20, 20);
}
/* experimental line height management */
* {
    line-height: calc(1em + 0.5rem);
}

ul{
    padding-inline-start: 0px;
  }
  li {
    list-style-type: none; 
    /* padding: 20px 0; */
    margin-bottom: 1rem;
  }