@keyframes move-background {
  0% {
    background-position: 0% 0%;
    /* Start position */
  }

  100% {
    background-position: 200% 0%;
    /* End position, moving the gradient across */
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@font-face {
  font-family: ComicSans;
  src: url("/fonts/Comic Sans MS.ttf");
}


.rainbow-box {
  height: 10vh;
  width: 100%;
  background: linear-gradient(90deg,
      red,
      orange,
      yellow,
      green,
      blue,
      indigo,
      violet,
      red
      /* Repeat the first color for seamless looping */
    );
  background-size: 200% 100%;
  /* Make the background wider to allow for animation */
  animation: move-background 8s linear infinite;
  /* Apply the animation */
}

div {
  text-align: center;
}

.title {
  text-align: center;
  color: white;
  position: sticky;
  top: 0;
  padding: 10;
  display: table;
}

.title-element {
  display: flex;
  justify-content: center;
  /* Centers horizontally */
  align-items: center;
}

.title-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.title-text {
  width: 100%;
  font-size: 4vw;
  font-family: ComicSans;
}

.title-button {
  border-top: 4px solid black;
  border-right: 0;
  border-left: 0;
  border-bottom: 4px solid black;
  height: 5vh;
}

p,
h2 {
  color: white;
}

body {
  background-image: url("https://static.wikia.nocookie.net/why-so-serious/images/3/35/Jonkler.png");
  background-size: contain;
  background-repeat: repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: 200% 100%;
  animation: move-background 4s linear infinite;
}

.cellbox {
  text-align: center;
  width: 100%;
  top: 0;
  padding: 10;
  display: table;
}

.cellbox-element {
  display: flex;
}

.superjonkler {
  background-image: url("https://static.wikia.nocookie.net/why-so-serious/images/3/35/Jonkler.png");
  background-size: fit;
  background-repeat: repeat;
  background-position: center;
  background-size: 100%;
  width: 5%;
  animation: rotate 1s linear infinite;
}

.superjonkler-element {
  height: 10vh;
}
