:root {
  --bg: #000f26;
  --fg: #fbc638;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
}

.text {
  color: var(--fg);
  font-family: 'Courier New', Courier, monospace;
  user-select: none;
}

.header {
  font-size: 25px;
  padding: 20px;
  text-decoration: underline;
}

.centered {
  margin: auto;
  text-align: center;
}

.small {
  font-size: 10px;
}

li::marker {
  content: "-> ";
}

hr {
  width: 50vw;
  margin: auto;
  margin-top: 10px;
  border: none;
  background-color: var(--fg);
  height: 1px;
}

li {
  font-size: 16px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.half {
  width: 50vw;
}

.drop {
  display: flex;
  height: 128px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.drop:hover {
  background-color: var(--fg);
}

.drop:hover * {
  color: var(--bg);
}

.hidden {
  display: none;
}

.bottom {
  display: flex;
  flex-direction: row;
}

.list {
  margin: 10px;
}

.list>ul>li.missing::marker {
  content: "[x] ";
  color: #ff0000;
}

.list>ul>li::marker {
  content: " ok ";
  color: #00ff00;
}

.thumbnail {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-image: url(assets/baseTexture.png);
  margin-right: 5px;
  image-rendering: pixelated;
  position: relative;
}

.thumbnail:hover {
  scale: 3;
  z-index: 1000;
}

canvas {
  image-rendering: pixelated;
  width: 50vw;
  height: 50vw;
}

.download-a {
  position: fixed;
  left: 100vw;
  top: 0;
}

.right {
  display: flex;
  flex-direction: column;
}

button,
.drop {
  border: 1px solid var(--fg);
  border-radius: 10px;
  margin: 20px;
  background-color: var(--bg);
  color: var(--fg);
  padding: 10px;
  cursor: pointer;
}

button:hover {
  background-color: var(--fg);
  color: var(--bg);
}