@import "fonts.css";

:root{ 
    --safe-top: env(safe-area-inset-top); 
    --primary-color: #004cff;
    --background-color: #121212;
    
    --red: #F60944;
    --yellow: #FFF06E;
}

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

body {
    font-family: "Nohemi", sans-serif;
    background-color: #121212;
    color: white;
}

@media (color-gamut: p3) {
  :root {
    --blue: color(display-p3 0.12 0.05 1);
    --red: color(display-p3 1 0.16 0.28);
    --yellow: color(display-p3 1 0.94 0.45);
  }
}