* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: serif;
  font-size: 15px;
  font-smooth: never;
}
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  width: 1200px;
  margin: 32px auto;
  gap: 32px;
}
table {
  border-spacing: 24px;
}
.table-container {
  max-width: 100%;
  overflow-x: auto;
}
th,
td {
  border-style: none;
  border-color: #fff;
}
table img {
  vertical-align: middle;
}
canvas {
  width: 100%;
}

#tagline {
  font-size: 115%;
  font-weight: bold;
  animation: colorRotate 3s infinite alternate ease-in-out;
  text-align: center;
}
@keyframes colorRotate {
  0% {
    color: #506dff;
  }
  100% {
    color: #96ff03;
  }
}
