body {
  animation: gay 37s linear infinite;
  }
  @keyframes gay {
    0% {background: red;}
    10% {background: maroon;}
    20% {background: orange;}
    30% {background: yellow;}
    40% {background: green;}
    50% {background: blue;}
    60% {background: cyan;}
    70% {background: purple;}
    80% {background: magenta;}
    90% {background: magenta;}
    100% {background: red;}  
  }
  div, .bodyReal {
    font-family: monospace;
    color: white;
    font-size: 1.1rem;
    line-height: 0.9;
    
    overflow-y: auto;
    overflow-x: visible;
    
    background-color: rgba(0, 0, 0, 0.6);
    
    text-align: left;
    
    border-style: dotted;
    
  }
  .bodyReal {
    display: inline-block;
    outline-style: solid;
    max-width: 50em;
    width: calc(100vw - 10vmin);
    height: calc(100vh - 10vmin + 8px);
    margin-top: calc(5vmin - 8px);
    width: calc((100vw - 10vmin) + 8px);
    margin-left: 5vmin;
  }

  #two {
    width: fit-content;
    height: fit-content;
    padding: 20px;
  }
  
  ul {
    display: block;
    margin-left: -1em;
    counter-reset: number;
  }
  li {
    outline: solid 1px rgba(255,255,255,0.4);
    padding-top: 9px;
    padding-bottom: 9px;
    padding-left: 15px;
    display: block;
    position: relative;
    counter-increment: number;
  }
  li:nth-child(odd) {
    background-color: rgba(0,0,0,0.2);
  }
  li:before {
    position: absolute;
    margin-left: -18px;
    margin-top: -5px;
    transform: rotate(-20deg);
    color: rgb(0,255,0);
    content: counter(number)" ";
  }
  a {
    animation: gay 10s linear infinite;
    color: #5BCEFA;
    filter: 
    drop-shadow (-3px, 3px, 0px, black),
    drop-shadow (3px, 3px, 0px, black),
    drop-shadow (3px, -3px, 0px, black),
    drop-shadow (-3px, -3px, 0px, black);
  }
  b a {
    animation:;
    color: white;
    
  }
  .tano {
    position: absolute;
    display: inline-block;
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    top: calc(100% - 35px);
    left: -20px;
    color: transparent;
    transition-duration: .2s;
    transition-timing-function: cubic-bezier(.22,.96,.52,1); 
    overflow: hidden;
    background-color: rgba(255, 0, 255, .7);
    zoom: 90%;
  }
  .tano:hover {
    width: 100%;
    height: 10em;
    z-index: 100;
    padding: 14px;
    background-color: rgba(0, 0, 0, .7);
    color: white;
    backdrop-filter: blur(8px);
    overflow: auto;
  }
  .tano:before {
   content: "extra comment: ";
  } 
  .tano img {
  max-height: 15em;
  width: auto;
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(.22,.96,.52,1); 
  }
  .tano img:hover {
  max-height: 25em;
  width: auto;
  }
  
  i {
    opacity:.8; font-size:0.7em;
  }
  #frontground {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    margin: none;
    box-sizing: border-box;
    background: radial-gradient(transparent 80%, rgba(255,25,255,0.5));
    backdrop-filter: blur(20px);
    opacity: 30%;
    pointer-events: none;
  }
  
 
    