

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

:root {
  --teal-dark:    #0d4a4a;
  --teal-mid:     #0e6b6b;
  --teal-light:   #15908a;
  --accent-pink:  #e94f8b;
  --accent-yellow:#f7c948;
  --accent-cyan:  #2be8d8;
  --sidebar-w:    210px;
  --header-h:     85px;
  --text-light:   #e8f4f3;
}

body {
  font-family: 'Nunito', sans-serif;
  background: #f0f4f4;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
