:root {
    color-scheme: light dark;
    --bg : light-dark(#ffffff, #000000);
    --text : light-dark(#000000, #ffffff);
}

* {
    font-family: 'Geist Mono', monospace;
    background-color: var(--bg);
    color: var(--text);
}

.center-this-shit {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}