@import url("./variables.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: var(--font-family-base);
  line-height: var(--line-height-base);
  background-color: var(--color-bg-light);
  color: var(--color-text-light);
}

html.dark-theme,
body.dark-theme {
  background-color: var(--color-bg-dark);
  color: var(--color-text-dark);
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li,
ol li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: normal;
  margin: 0;
  padding: 0;
}
