:root {
  --text: #434850;
  --light-text: #c9ccd083;
  --background: #f2f8f6;
  --light-border: #6a6a6a21;
  --darker-border: #3e3e3e21;
  --lighter-border: #4a4a4a21;
  --primary: #5eb39b;
  --secondary: #92d5c2;
  --accent: #66d0b2;
}

html[data-theme="dark"] {
  --text: #eff5f3;
  --light-text: #c9ccd083;
  --background: #070d0b;
  --light-border: #fafafa1d;
  --darker-border: #2c2c2c21;
  --lighter-border: #fafafa2c;
  --primary: #4ba088;
  --secondary: #2b6e5b;
  --accent: #2f987a;
}

* {
  font-family: 'Jost', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 14px;
}

.hidden {
  opacity: 0;
}

body {
  width: 100vw;
  height: 100vh;
  background-color: var(--background);
  color: var(--text);
}

@supports (-webkit-appearance: none) and (not (-webkit-overflow-scrolling: touch)) {
  /* Targets Chrome and Chromium-based browsers */
  body {
    overflow-x: hidden !important;
  }
}

a {
  color: var(--text);
  text-decoration: none;
}

svg {
  fill: var(--text);
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
