html {
  font-family: "Shadows Into Light", cursive;
  background-image: linear-gradient(315deg, #e9c786, #fff4da);
  min-height: 100vh;
  user-select: none;
}

body {
  --width: min(80vw, 800px);
  width: var(--width);
  margin: 0;
  margin-left: calc((100vw - var(--width)) / 2);
  margin-bottom: 1em;
  font-size: 225%;
}

button, select, input {
  font: inherit;
  border: none;
  border-radius: 50px;
  padding: 5px 15px;
}

button, select {
  background-color: #ffd076;
}

ul {
  list-style: none;
  padding: 0;
}

li input {
  margin-bottom: 0.5em;
}

button {
  cursor: pointer;
}

video {
  width: 100%;
  margin-top: 10vh;
}

#itemReveal, #inGame {
  text-align: center;
  margin-top: 50px;
}

img {
  width: max(200px, 50%);
  height: auto;
}

#itemName {
  text-transform: uppercase;
}

#itemValue, #teamScore {
  display: inline-block;
  border-radius: 50%;
  border: solid 1px black;
  width: 2em;
  height: 2em;
  text-align: center;
}

#itemValue[hidden] {
  display: none;
}