body {
  background-image: url('assets/bg640_480.png');
  background-repeat: repeat;
  font-size: 16px;
}
@font-face {
  font-family: 'PixelGamer';
  src: url('assets/PixelGamer.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
h1 {
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 64px;
  text-align: center;

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  flex-shrink: 0;
  text-shadow: 2px 2px 0 #000;
}
h2 {
  text-align: center;
  font-family: 'PixelGamer', monospace;
  font-size: 24px;
  font-weight: normal;
  color: #003dc2;
  background: rgba(255, 255, 255, 0.5);
  padding: 10px 0px;
  border-radius: 5px;
}
p {
  text-align: center;
}

nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
}
.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-list li {
  margin: 0 10px;
}

.title-container {
  position: relative;
  top: 25px;
}
.header1 {
  transform: rotate(-5deg);
  color: rgb(94, 63, 24);
}
.header2 {
  transform: rotate(-7deg);
  color: rgb(136, 120, 31);
}
.header3 {
  transform: rotate(-9deg);
  color: #ff6a00;
}
.content-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content {
  max-width: 800px;
  width: 100%;
  background: white;
  padding: 16px 8px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1em;
}
.compare-table th,
.compare-table td {
  border: 1px solid #ccc;
  padding: 8px;
  vertical-align: middle;
}
.compare-table thead th {
  text-align: center;
}
.compare-table tbody th {
  text-align: left;
  font-weight: normal;
}
.compare-table tbody td {
  text-align: center;
}
input[type='checkbox'] {
  transform: scale(2);
  pointer-events: none;
  touch-action: none;
}
.visitor-hr {
  border: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    red,
    orange,
    yellow,
    lime,
    blue,
    indigo,
    violet
  );
  margin: 16px 0;
}
