body {
      background-color: black;
      color: lime;
      font-family: "Comic Sans MS", cursive, sans-serif;
      text-align: center;
      cursor: url('https://cur.cursors-4u.net/others/oth-4/oth311.cur'), auto;
    }
    a {
      color: red;
      text-decoration: blink;
      font-size: 24px;
    }
    .flames {
      border: 5px dashed magenta;
      padding: 20px;
      margin: 30px;
      background-image: url('https://www.animatedimages.org/data/media/770/animated-greece-flag-image-0011.gif');
      background-repeat: repeat;
    }
    .errorbox {
      background-color: darkred;
      color: white;
      font-weight: bold;
      border: 5px double yellow;
      padding: 20px;
      margin: 40px;
      animation: flash 1s infinite;
    }
    @keyframes flash {
      0% { opacity: 1; }
      50% { opacity: 0.4; }
      100% { opacity: 1; }
    }
    .errorbox {
      background-color: darkred;
      color: white;
      font-weight: bold;
      border: 5px double yellow;
      padding: 20px;
      margin: 40px;
      animation: flash 1s infinite;
    }
.brotitle {
  color: yellow;
  text-shadow: 3px 3px 0 black;
  font-size: 48px;
  animation: glow 1s infinite alternate;
}
.evilbrotitties {
  color: red;
  text-shadow: 3px 3px 0 orange;
  font-size: 35px;
  animation: glow 1s infinite alternate;
}
.normalbrotitties {
  color: cyan;
  text-shadow: 3px 3px 0 purple;
  font-size: 35px;
  animation: glow 1s infinite alternate;
}
.pulse-3d-text {
      font-size: 4rem;
      font-weight: bold;
      color: #85fdff;
      text-shadow:
        1px 1px 0 #86adcf,
        2px 2px 0 #509fa1,
        3px 3px 0 #509fa1,
        4px 4px 0 #509fa1,
        5px 5px 20px #509fa1;
      animation: ballpulse 1s infinite alternate ease-in-out;
      transform-style: preserve-3d;
    }

    @keyframes ballpulse {
      0% {
        transform: scale(1) rotateX(0deg) rotateY(0deg);
        text-shadow:
        1px 1px 0 #86adcf,
        2px 2px 0 #509fa1,
        3px 3px 0 #509fa1,
        4px 4px 0 #509fa1,
        5px 5px 20px #509fa1;
      }
      100% {
        transform: scale(1.1) rotateX(10deg) rotateY(10deg);
        text-shadow:
        1px 1px 0 #86adcf,
        2px 2px 0 #509fa1,
        3px 3px 0 #509fa1,
        4px 4px 0 #509fa1,
        5px 5px 20px #509fa1;
      }
    }

.neonpulse-3d-text {
      font-size: 4rem;
      font-weight: bold;
      color: #ff00ff;
      text-shadow:
        1px 1px 0 #fff,
        2px 2px 0 #ff00ff,
        3px 3px 0 #ff00ff,
        4px 4px 0 #ff00ff,
        5px 5px 20px #ff00ff;
      animation: diggapulse 1s infinite alternate ease-in-out;
      transform-style: preserve-3d;
    }

    @keyframes diggapulse {
      0% {
        transform: scale(1) rotateX(0deg) rotateY(0deg);
        text-shadow:
          1px 1px 0 #fff,
          2px 2px 0 #ff00ff,
          3px 3px 0 #ff00ff,
          4px 4px 0 #ff00ff,
          5px 5px 20px #ff00ff;
      }
      100% {
        transform: scale(1.1) rotateX(10deg) rotateY(10deg);
        text-shadow:
          1px 1px 0 #fff,
          2px 2px 0 #ff00ff,
          3px 3px 0 #ff00ff,
          4px 4px 0 #ff00ff,
          6px 6px 30px #ff00ff;
      }
}

.smallerbrotitle {
  color: yellow;
  text-shadow: 3px 3px 0 black;
  font-size: 25px;
  animation: glow 1s infinite alternate;
}
@keyframes neonFlash {
    0% { box-shadow: 0 0 5px magenta; }
    100% { box-shadow: 0 0 25px lime; }
  }
.buttonplate {

  font-size: 24px;
  font-family: 'Comic Sans MS', cursive;
  background-color: lime;
  color: black;
  border: 5px dashed magenta;
  padding: 15px 30px;
  cursor: pointer;
  animation: pulse 1s infinite alternate;
}
.peoplebuttons {
	font-size: 24px;
  font-family: 'Comic Sans MS', cursive;
  background-color: lime;
  color: black;
  border: 5px dashed magenta;
  padding: 15px 30px;
  cursor: pointer;
  animation: evilpulse  1s infinite alternate;
}

.brotitle {
  color: cyan;
  text-shadow: 3px 3px 0 magenta;
  font-size: 48px;
  animation: glow 1s infinite alternate;
}

.bro-button-wrapper {
  margin-bottom: 40px;
}
@keyframes pulse {
  from { transform: scale(1); box-shadow: 0 0 10px red; }
  to { transform: scale(1.1); box-shadow: 0 0 20px yellow; }
}

@keyframes evilpulse {
  from { transform: scale(1); box-shadow: 0 0 10px red; }
  to { transform: scale(0.9); box-shadow: 0 0 20px yellow; }
}