/* Splash screen styles */
#splash-screen-style {
  /* Kept ID for reference if needed, though usually IDs are for elements */
}

html {
  height: 100%;
}
body {
  margin: 0;
  min-height: 100%;
  background-color: #000000;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.contain {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.stretch {
  display: block;
  width: 100%;
  height: 100%;
}
.cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.bottomLeft {
  position: absolute;
  bottom: 0;
  left: 0;
}
.bottomRight {
  position: absolute;
  bottom: 0;
  right: 0;
}
.bg-loaded {
  background-image: url("icons/stash-192.png");
}

/* Material Icons and Camera Shutter Button styles */
@font-face {
  font-family: "Material Icons";
  src: url("/assets/fonts/MaterialIcons-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}
