/* all of my css is just the same thing over and over lol */
 body {
            
            font-family: "Comic Sans MS";
            text-align: center;
            background-image: url("/eternalbliss/bliss.png");
            background-repeat: no-repeat;
            background-size: cover;
           
 }
 .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;
 }

            
        
        h1 {
            color: black;
            font-family: "Comic Sans MS";
            text-align:center
        }
        #r {
          text-align: right;
        
        }
        .dafuture {
            color:blueviolet;
            font-family: "Comic Sans MS";
            font-style: italic;

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

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

  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }
p#vib {
    animation-name: shake;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    cursor: pointer;
}
h1#vib {
    animation-name: shake;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    cursor: pointer;
}

p#floatm {
    animation-name: speen;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    cursor: pointer;
}
@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); }
}
