/* make it bigger */
main {
    width: 60%;
    max-width: none;
}

table,
th,
td {
  border: 2px solid;
  border-collapse: collapse;
}
th {
  background-color: var(--color-accent);
  color: var(--color-text);
  word-wrap: normal;
  font-weight: 600;
}
th h3 {
  margin: 0;
}
td {
  text-align: center;
}
td:has(a) {
  margin: 1rem !important;
}
table {
  float: right;
  max-width: 40%;
  margin-left: 2rem;
}

.wiki-fullbody {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 20vmax;
}

/* Mobile view */
@media screen and (max-width: 600px) {
    table {
      max-width: 100%;
      margin: 0;
    }
}

/* Character specific gimmicks */
.pitch-fullbody-placeholder {
  width: 20vmax;
  max-width: 100%;
  aspect-ratio: 2 / 2.2;
  position: relative;
}

.pitch-fullbody {
  width: 120%;
  position: absolute;
  left: -999px;
  right: -999px;
  margin: auto;
}

.bobbing {
  animation: bob 3s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(4px);
  }
}