@media (prefers-color-scheme:light) {
  :root {
    --titlebackground: url(/img/minecraft/background.webp);
  }
}
@media (prefers-color-scheme:dark) {
  :root {
    --titlebackground: url(/img/minecraft/background.webp);
  }
}
@media (orientation:landscape) {
  :root {
    --skinWidth: 5em;
  }
}
@media (orientation:portrait) {
  :root {
    --skinWidth: 3em;
  }
}
#title {
  background: var(--titlebackground);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
#titleEl {
  text-align: center;
  padding: 1em 2em;
  margin: 3em;
  background: var(--elementcolor);
  border: 2px solid var(--elementbordercolor);
  border-radius: 0.25em;
  box-shadow: 0.25em 0.25em 0.5em var(--shadowcolor);
}
button {
  min-width: 6em;
  width: fit-content;
}
.buildDetails {
  margin: 1em 0;
  border-top: 2px solid var(--textshadow);
}
.buildDetails img {
  float: left;
  width: fit-content;
  height: fit-content;
}
.buildBuilder {
  margin-top: 0;
  opacity: 0.8;
}
.buildImage {
  position: relative;
  display: inline-flex;
  width: 100%;
  border: 2px solid var(--textshadow);
}
.buildImage img {
  width: 100%;
}
img.skinImage {
  max-width: var(--skinWidth);
  aspect-ratio: 70 / 156;
  margin: 1em 0.5em 1em 0;
}
.imageDate {
  position: absolute;
  bottom: 0;
  right: 0;
  text-shadow: none;
  font-size: var(--textsmall);
}
.hash {
  color: #808080;
  text-shadow: none;
  font-size: var(--textsmall);
  word-break: break-all;
}
.hash .copybutton, .hash .copybutton:hover {
  border: none;
  background: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
}
.hash .copybutton:hover {
  color: var(--textcolor);
}