
:root {
  /*
  font-family: Rubik, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;
*/

  background-color: #eee;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;

  --primary: #e81926;
  --secondary: #1E335F;    
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
}

#app {
  display: flex;
  flex-direction: row;
  height: 100vh;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  /*text-align: center; */
}

.card {
  position: relative;
}

.action {
  color: var(--grey);
  font-size: 26px;
  opacity: 0.6;
}

.action:hover {
  color: var(--white);
  opacity: 1;
}

.action-disabled {
  color: var(--grey);
  font-size: 26px;
  opacity: 0.2; 
}

.version {
  position: absolute;
  bottom: 0;
  font-size: 8px;
  opacity: 0.4;
}