/* POV CSS - Minimal styles for block display only */

body,
html {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  background-color: #000;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: unset;
  text-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-crisp-edges;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

@font-face {
  font-family: "zx-spectrum";
  src: url(zx-spectrum.ttf) format("truetype");
}

/* Block info styling */
#blocknumber, #blockhash {
  position: fixed;
  left: 10px;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  color: #00ff00;
  padding: 10px;
  border-radius: 5px;
  font-family: "zx-spectrum", monospace;
  font-size: 16px;
  max-width: 400px;
  word-break: break-all;
}

#blocknumber {
  top: 10px;
  font-size: 16px;
}

#blockhash {
  top: 160px;
}

.block-info {
  padding: 0px;
  border: 0px;
  display: block;
  margin: 16px 0;
}

.block-info-large {
  padding: 0px;
  border: 0px;
  display: block;
  margin: 0;
  line-height: 1;
  font-size: 32px;
}

#blockhash {
  line-height: 0.32;
}

.grid-break {
  line-height: 0;
  margin: 0;
  padding: 0;
  display: block;
  height: 0;
}

#numbersvg {
  position: fixed;
  width: calc(100% - 360px);
  height: 100%;
  right: 10px;
  top: 10px;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  color: #00ff00;
  padding: 0px;
  font-family: "zx-spectrum", monospace;
  font-size: 16px;
  /* border: 1px solid #00ff00; */
  word-break: break-all;
  display: flex;
  align-items: center;
  justify-content: center;
}

#numbersvg svg {
  /* background-color: #888; */
  width: 90%;
  height: auto;
}
