:root {
  --bg-color-main: #f5f5f5;
  --bg-color-sec: #fff;
  --text-color: #2e2e2e;
  --text-color-sec: #646464;
  --primary-color: #018c4c;
  --secondary-color: #2ac07c;
  --border-color: #e2e3e4;

  /* common */
  --box-shadow: 0px 2px 8px -1px rgb(0 0 0 / 8%), 0px 1px 16px 4px rgb(0 0 0 / 6%);
}

[data-theme='dark'] {
  --bg-color-main: #1c2226;
  --bg-color-sec: #2d343c;
  --text-color: #fff;
  --text-color-sec: #bdbebf;
  --primary-color: #02b262;
  --secondary-color: #38d990;
  --border-color: #525354;
}

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

html {
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  font-family: 'Montserrat', Roboto, Arial, Helvetica, sans-serif;
}

body {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: var(--bg-color-main);
  width: 100vw;
  height: 100vh;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: var(--bg-color-main);
}

::-webkit-scrollbar-thumb {
  background-color: #ccc;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #aaa;
}

h1,
h2,
h3,
h4,
h5,
h6,
pre,
p,
ul {
  margin: 0;
  color: var(--text-color);
}

ul {
  list-style: none;
}

p {
  word-wrap: break-word;
}

li {
  text-decoration: none;
  list-style-type: none;
}

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

@media only screen and (max-width: 576px) {
  html {
    font-size: 50%;
  }
}
