    html
    {
      background-image: url("shrineBrTile.jpg");
      background-size: 20%;
    }
    .centered-image
    {
      display: block;
      margin-left: auto;
      margin-right: auto; 
    }
    .container
    {
      background-color: white; 
      width: fit-content;
      height: fit-content;
      display: flex;
      flex-direction: column;
      border: inset;
    }
    #chimatasHead
    {
      width: 70%;
      position: relative;
      right: -30%;
      /*bottom: -120px;*/
      animation-name: headbob-anim;
      animation-timing-function: ease-out;
      animation-iteration-count: infinite;
      animation-duration: 0.5s;
    }
    .fuckass-text
    {
      animation-name: fuckass-text-anim;
      animation-duration: 5s;
      animation-iteration-count: infinite;
    }
    .bouncy{}
    .bouncy:hover
    {
      animation: fuckass-bounce 0.5s;
      animation-iteration-count: infinite;
    }
    #chimata-main
    {
      animation-name: slideUp;
      animation-duration: 2s;
    }
    @keyframes slideUp 
    {
      0% {transform: translateY(100vh); transform: scale(0.3);}   
      100% {transform: translateY(0); transform: scale(1);}
    }
    @keyframes fuckass-text-anim
    {
      0%  {color: red;}
      10% {color: orange;}
      20% {color: yellow;}
      40% {color: #00ff00;}
      60% {color: cyan;}
      80% {color: blue;}
      85% {color: #a203ff;}
      95% {color: magenta;}
      100% {color: red;}
    }
    @keyframes fuckass-bounce 
    {
      /*copy pasted directly from W3 schools:*/
       0% { transform: translate(1px, 1px) rotate(0deg); }
      10% { transform: translate(-1px, -2px) rotate(-1deg); }
      20% { transform: translate(-3px, 0px) rotate(1deg); }
      30% { transform: translate(3px, 2px) rotate(0deg); }
      40% { transform: translate(1px, -1px) rotate(1deg); }
      50% { transform: translate(-1px, 2px) rotate(-1deg); }
      60% { transform: translate(-3px, 1px) rotate(0deg); }
      70% { transform: translate(3px, 1px) rotate(-1deg); }
      80% { transform: translate(-1px, -1px) rotate(1deg); }
      90% { transform: translate(1px, 2px) rotate(0deg); }
      100% { transform: translate(1px, -2px) rotate(-1deg); }   
     
    }
    @keyframes headbob-anim
    {
      from {bottom: -140px;}
      to {bottom: -150px;}
    }