/*bordem but refined to look more vault like*/
body {
            background-color: grey;
            color: black;
            font-family: monospace, sans-serif;
            font-family: "Sono", monospace, sans-serif;
            text-align:center
            
        }
        h1 {
            color: black;
            font-family: "Sono", monospace, sans-serif;
            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 */
  border-radius: 5px;
}
button {
    color: black !important;
    background-color: grey !important;
    border: 1px solid black !important;
    border-radius: 3px !important;
    font-family: "Sono";
    box-shadow: none !important;
    outline: none !important;
}

button:active {
    background-color: #5c5c5c !important;
}

a:not(.tidbit) {
    color: blue;
    transition: color 0.15s ease;
}
a:hover {
    color: #56edf6;
    text-shadow: 0 0 4px #56edf6, 0 0 12px #56edf6
}
a img:hover {
    border: 2px solid #56edf6 !important;
    border-radius:  5px;
    display: inline-block;
    margin: -2px;
}
/*stop images from snapping to the side of the viewport */
a img {
    display: block;
    margin: 0 auto;
    border: 2px solid grey;
}
@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); }
}
