/*
 * 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 {
  --hand-color: #888;
  --rim-color: #f3f3f6;
  --color-background: #fff;
  --color-text: #000;
}
.rim {
  width: 100%;
  border-radius: 50%;
  position: relative;
  box-shadow:
    inset -1px -1px 2px 0 var(--rim-color);
}
.big-hand::before,
.small-hand::before {
  content: '';
  display: block;
  padding-top: 100%;
}
.big-hand,
.small-hand {
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;  /* 相対的な幅 */
  height: 100%; /* 相対的な高さ */
}
.big-hand {
    background-image: url("/assets/minute-hand-650fdbf9.svg");
}
.small-hand {
  background-image: url("/assets/hour-hand-feabea18.svg");
}
b {
  color: blueviolet;
}
