/* changelog: fixed images on mobile*/
        body {
            background-color: black;
            color: white;
            font-family: "Sono";
            text-align:center
        }
/* themes below are backported from eternalbliss */
          .vapor { 
          position: absolute;
          bottom: 0;
           text-align: left;
          font-family: Monospace;
          letter-spacing: 7px;
        }
        .normalvaporwave { 
        /* text align is left up to inline style. */
        font-family: Monospace;
        letter-spacing: 7px;
       }
 #botright {
   position: absolute;
   bottom: 0;
   right: 0;
 } 
 #topright {
   position: absolute;
   top: 0;
   right: 0;
 }
  #topleft {
   position: absolute;
   top: 0;
   left: 0;
 }
            
        
        h1 {
            color: white;
            font-family: "Sono";
            text-align:center
        }
        
        .dafuture {
            color:blueviolet;
            font-family: "Sono";
            font-style: italic;

        }
        
        .quote {
          font-family: Times;
        }
        .side1 {
                color: green;
                font-family: "monospace";
            }
        .side2 { 
                color: blue;
                font-family: "monospace";
            }
            .side3 {
               color: red;
               font-family: "Comic Sans MS"; 
            }
            .meme {
                font-family: "Comic Sans MS";
                color:white;
            }
            .ohgod {
                font-family: "Libre Barcode 39 Extended Text";
                
            }
            */

            .blink {
    animation: blinker 2s linear infinite;
  }

  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }
/* .neon from https://codersblock.com/blog/creating-glow-effects-with-css/ */
#vib {
    animation-name: shake;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    cursor: pointer;
}
img#vib {
    animation-name: shake;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    cursor: pointer;
}
.vib {
    animation-name: shake;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    cursor: pointer;
}
.neon {
  width: 150px;
  height: 150px;
  background-color: #fff;

  box-shadow: 120px 80px 40px 20px #0ff;
  
  
}
p#floatm {
    animation-name: speen;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
  width: auto\9; /* ie8 because modern browsers seem to mimic it */
}
/* backports from the bike repair website i made for buisness and entrepenurship */
.spin {
    text-align: right;
    animation-name:spin;
    animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear; 
}
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
@keyframes shake {
    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 speen {
    0% { transform:  rotate(1deg); }
    10% { transform:  rotate(2deg); }
    20% { transform:  rotate(3deg); }
    30% { transform:  rotate(4deg); }
    40% { transform:  rotate(5deg); }
    50% { transform:  rotate(6deg); }
    60% { transform:  rotate(7deg); }
    70% { transform:  rotate(8deg); }
    80% { transform:  rotate(9deg); }
    90% { transform:  rotate(10deg); }
    100% { transform: rotate(11deg); }
}