* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

html,
body {
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  user-select: none;
}

:root {
  --bg-primary: #19191B;
  --bg-secondary: #3C3E3F;

  --text-primary: #139f00;
  --text-secondary: #e2e2e2;

  --font-xxl: 24px;
  --font-xx: 20px;
  --font-x: 16px;
  --font-small: 14px;

  --font-weight: bold;

  --border-radius: 1rem;
}