html, body {
  margin: 0;
  height: 100%;
  width: 100%;
}

body {
  background-color: rgb(0, 0, 0);
  font-size: clamp(0px, 10vmin, 50px);
  flex-direction: column;
  display: flex;
  gap: 5vmin;
  width: 1920px;
  height: 953px;
}

* {
  box-sizing: border-box;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-family: monospace;
  user-select: none;
  touch-action: manipulation;
  color: white;
}

p, span, a, h3, h6 {
  color: white;
  font-weight: bold;
  margin: 0;
}
 
h3, h6 {
  display: inline-block;
}

div {
  display: flex;
  flex-direction: column;
}

button {
  border: 3px rgb(255, 255, 255) solid;
  background-color: rgb(0, 0, 0);
  transition: background-color 200ms;
}

button:hover {
  background-color: #1d1d1d;
}

.row {
  flex-direction: row;
}

.green {
  color: #00ff00;
}
.red {
  color: #ff0000;
}
.yellow {
  color: #ffff00;
}
.blue {
  color: #0000ff;
}

.apple {
  color: red;
}
.size {
  color: #4aeaff;
}
.speed {
  color: #daff54;
}
.level {
  color: #0077ff;
}
.tier {
  color: rgb(1, 221, 93);
}

.small {
  font-size: .9em;
}
.smaller {
  font-size: .75em;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.halfbr {
  display: inline-block;
  height: 0.25em;
  width: 100%;
}

#at {
  font-size: 1em;
}

#aa {
  position: relative;
  width: 500px;
  aspect-ratio: 1 / 1;
  border: 5px solid white;
  overflow: visible;
}

#aa * {
  position: absolute;
}

#p {
  --size: 1px;
  width: calc(var(--size) * 10);
  aspect-ratio: 1 / 1;
  background-color: white;
  transition-property: margin;
  flex-shrink: 0;
}

.a {
  width: 10px;
  aspect-ratio: 1 / 1;
  background-color: red;
}

#aac {
  width: 100%;
  height: 100%;
}

#ait {
  bottom: 1%;
  font-size: 0.3em;
  color: rgb(150, 150, 150);
  font-weight: 100;
  z-index: 20;
}

#ld {
  gap: 25px;
  position: absolute;
  transform: translateX(550px);
}

#lp {
  font-size: 0.5em;
}

.ucr {
  flex-direction: row;
  gap: 10px;
}

.ucr > * {
  width: 100px;
  height: 100px;
  aspect-ratio: 1 / 1;
  border-width: 2px;
}

#au2i {
  font-size: 0.95em;
}

#au4i {
  font-size: 0.85em;
}

#tp {
  font-size: 0.5em;
}

.tp {
  font-size: 2em;
}

#bd {
  width: 500px;
  gap: 15px;
}

#bd > * {
  width: 90px;
  aspect-ratio: 1 / 1;
  font-size: 1em;
  position: relative;
}

#bd > * > p {
  height: 1.3em;
}

#mt, #mb {
  transform: rotate(90deg);
}