/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

@import "tailwindcss";

html,
body {
  min-height: 100vh;
  padding: 0;
  margin: 0;
}

html {
  font-size: 100%;

  @media (min-width: 100ch) {
    font-size: 1.1875rem;
  }
}

.bg-body {
  background-color: white;
  /*background-color: hsl(33.3, 60%, 97.1%);*/
}
@media (prefers-color-scheme: dark) {
 .bg-body {
   background-color: hsl(202.5, 42.1%, 7.5%);
 }
}
