 /*bordem but refined to look more vault like*/
 body {
            background-color: grey;
            color: black;
            font-family: "Sono";
            text-align:center
            
        }
        h1 {
            color: black;
            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:black;
            }
            .ohgod {
                font-family: "Libre Barcode 39 Extended Text";
                
            }
           
.nowrap {
   text-wrap: nowrap;
}
            .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;
}
img {
  max-width: 100%;
  height: auto;
  width: auto\9; /* ie8 because modern browsers seem to mimic it */
}
@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); }
}
