:root {
  --color-bg: #070b16;
  --color-bg-light: #0d1322;
  --color-bg-card: #101118;
  --color-blue: #1cfafc;
  --color-blue-dark: #2e3393;
  --color-yellow: #fbbf24;
  --color-text: #ffffff;
  --color-text-dim: #64748b;
  --color-border: #1e293b;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 100px;
  --max-width: 1440px;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Lato", sans-serif;
  background-color: #020917;
  color: var(--color-text);
  line-height: 1.5;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

.tg-container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.tg-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.tg-main {
  flex: 1;
}

h1,
h2,
h3,
h4,
h5,
h6,
.tg-table-row__badge {
  font-family: "Lato", sans-serif;
}
