:root {
  --bg: #fff;
  --surf_t: #fcffff;
  --surf_m: #fcfeff;
  --surf_b: #f5f5f5;
  --blur: rgba(255,255,255,0.6);

  --border: #dee0e3;
  --border2: #dee0e3;
  --border3: #303030;
  
  --text1: #000000;
  --text2: #606263;
  --text3: #88898a;
  
  --logo: #222224;
  --svg: #2d2d33;
  --navIcon: #6c6c70;
  --activeColor: #232329;
  
  --btn1: #fff;
  --btn2: #0a0a12;
  
  --focus: rgba(0,0,0,0.3);
  --input: #f2f2f2;
  
  --accent1: #f7fafc;
  --accent2: #f2f6f7;
  --accentOdd: #fcffff;
  
  --g1: #40733d;
  --r1: #ed1822;
}

.dark{
  --bg: #000;
  --surf_t: #0a0a12;
  --surf_m: #131317;
  --surf_b: #1e1e24;
  --blur: rgba(0,0,0,0.6);

  --border: #343536;

  --text1: #ffffff;
  --text2: #a1a4ab;
  --text3: #676b73;
  
  --logo: #e3e3e3;
  --svg: #adadad;
  --navIcon: #6c6c70;
  --activeColor: #e3e3e3;
  
  --btn1: #000;
  --btn2: #f2f2f2;
  
  --focus: rgba(255,255,255,0.3);
  --input: #191921;
  
  --accent1: #111117;
  --accent2: #1f1f26;
  
  --g1: #a2de9e;
  --r1: #fc565e;
}

*{
  font-family: "Google Sans", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: default;
  -webkit-tap-highlight-color: transparent;
  scrollbar-width: none;
  scroll-behavior: smooth;
  position: relative;
  font-style: normal;
  user-select: none;
}

h1{ font-size: 18px; font-weight: 600;}
h2{ font-size: 16px; font-weight: 600;}
h3{ font-size: 14px; font-weight: 600;}
h4{ font-size: 12px; font-weight: 600;}
p{ font-size: 14px;}

hr{
  border: none;
  width: 100%;
  background-color: var(--border);
  height: 1px;
}

body{
  display: flex;
  width: 100dvw;
  height: 100dvh;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  overflow: hidden;
}

.padding1{
  padding: 0.25rem;
}
.padding2{
  padding: 0.5rem;
}


