/* 
:root {
  -webkit-font-smoothing: none;
  font-smooth: never;
} */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font: inherit; /* Get rid of all font sizes and heights */
}

html {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 20px;
  line-height: 1.6;
  color: black;
  background-color: white;
}

.stage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: black;
}

.stage__container {
  width: 800px;
  height: 480px;
  background: white;
  position: relative;
  overflow: hidden;
}

.stage__content {
  padding: 1.5rem;
}
.grid:has(> .col) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.col {
}

.mt-0 {
  margin-top: 0;
}

ol,
ul {
  list-style: none;
  margin-bottom: 0.2rem;
}

li {
  margin-bottom: 0.2rem;
}

p {
  margin-bottom: 0.2rem;
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.2rem;
  text-wrap: balance;
}

h1 {
  font-size: 1.2rem;
}

h2 {
  font-size: 1rem;
}

h3 {
  font-size: 0.8rem;
}

input[type="checkbox"] {
  appearance: none; /* Standard */
  width: 1em;
  height: 1em;
  border: 2px solid #000;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  transform: translateY(0.05em);
  margin-right: 0.5em;
}

input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.3em;
  height: 0.6em;
  transform: translate(-50%, -60%) rotate(45deg);
  border: solid #000;
  border-width: 0 2px 2px 0;
}

.text-small {
  font-size: 0.7rem;
  letter-spacing: 0.03em;
}

.text-tiny {
  font-size: 0.55rem;
  letter-spacing: 0.03em;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.battery-display {
  position: absolute;
  left: 1.5rem;
  bottom: 0.5rem;

  display: flex;
  align-items: center;
  line-height: 1;
}

.battery-bar-container {
  height: 1em;
  aspect-ratio: 2 / 1;
  border: 1px solid black;
}

.battery-bar {
  width: 0%;
  height: 100%;
  background-color: black;
}

.battery-percentage {
  padding-left: 0.5em;
}
