document, body {
  margin: 0;
  padding: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.menu {
  background: rgba(0, 0, 0, 0.5);
}

.menu > div {
  margin: 0.5rem 1rem;
  padding: 0.5rem 1rem;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: row;
}

.menu label {
  margin-right: 0.5rem;
}

.pickers {
  display: flex;
  flex-direction: column;
}

.pickers > canvas {
  margin: 0.5rem 1rem;
}

.title {
  color: #fff;
  text-align: center;
  font: 72px sans-serif;
}

.sponsors {
  color: #fff;
  text-align: center;
  font: 32px sans-serif;
}

.off-screen {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-200%, -200%);
}

.hidden {
  display: none !important;
}

.intravert-space {
  margin: 0.5rem;
  overflow: hidden;
  width: 190px;
  height: 100px;
  background: linear-gradient(65deg, #87c2cd 0, #a7e8f0 100%);
  color: #fff;
}

.space-available {
  display: flex  !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.placeholder_button {
  color: #d5483e;
  text-decoration: none;
}

.intravert-sponsors {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.patreon {
  background: #FF424D;
  width: 190px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.patreon img {
  width: calc(190px - 4rem);
  height: auto;
}

.admin {
  background: #00000080;
  color: #fff;
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
}

.admin div {
  display: flex;
  margin: 1rem 0.5rem;
}

@media (max-aspect-ratio: 1/1) {
  .overlay {
    flex-direction: column-reverse;
  }
}