.content {
  display: flex;
  flex-direction: column;

  width: 100%;

  background: var(--colour_mantle);
}

.content input[
  type='number'
] {
  height: 29px;
  width: 4rem;
}

.title {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;

  margin: 0;
  padding: 0;

  font-size: 120px;

  writing-mode: vertical-rl;

  color: var(--colour_text);
  text-shadow: 0.25em 0px rgba(
    var(
      --colour_blue_raw
    ),
    1
  );

  overflow: hidden;
  text-overflow: clip;
  white-space: nowrap;
}

.title:nth-child(
  2
) {
  left: 0.25em;
  top: 0.25em;
}

.title:nth-child(
  3
) {
  left: 0.5em;
  top: 0.5em;
}

.title:nth-child(
  4
) {
  left: 0.75em;
  top: 0.75em;
}

.title:nth-child(
  5
) {
  left: 1.0em;
  top: 1.0em;
}

.title:nth-child(
  6
) {
  left: 1.52em;
  top: 1.43em;
}

.title:nth-child(
  7
) {
  left: 0.32426em;
  top: 0.123781em;

  writing-mode: unset;

  color: var(--colour_green);
  text-shadow: 0.25em 0px var(
    --colour_text
  );
  
  font-size: 219px;
  line-height: 137px;
}

.eye_container {
  position: absolute;
  left: 50%;
  top: 50%;

  transform: translate(
    -50%,
    -50%
  );
}

.eye {
  width: 600px;
  height: 600px;
}

.controls {
  position: absolute;
  bottom: 10vh;
  left: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 2rem;

  background: var(--colour_white);

  transform: translateX(-50%);
}

.dual {
  display: flex;
}

.dual:first-of-type {
  margin-bottom: 0.5rem;
}

.dual:last-of-type {
  margin-top: 0.5rem;
}

.dual > * {
  margin-right: 12px;
}

.dual > *:first-child {
  margin-left: 0;
}

.dual > *:last-child {
  margin-right: 0;
}

.label {
  display: flex;
  align-items: center;
  justify-content: center;
}

.label input {
  margin-left: 1rem;
}
