/*
 * 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.
 */
:root {
  --color-white: white;
  --color-gray: lightgray;
  --color-gray-light: rgb(250, 250, 250);
  --color-gray-dark: dimgrey;
  --color-black: black;
  --color-green: hsl(143.76, 100%, 29.22%);
  --color-green-light: hsl(143.76, 100%, 98%);
  --color-red: #F44336;
  --color-red-light: #fdf8f8;

  --radius: 5px;

  font-family: system-ui, sans-serif;
  font-size: 14pt;
}

html {
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-items: center;
}

body {
  margin: 2em 2em;
  padding: 2em;
  min-width: 40em;
  border: 1px solid var(--color-gray);
  border-radius: var(--radius);
}
